Merge branch 'develop' into 'master'
klalloc & pipeline changes Added a klalloc and a klfree (not yet implemented) to lmemorymanager. Added a page_mappable method to vmemorymanager to check if a page is mappable before trying to map, this supports klalloc. Added a streamlined pipeline Added documentation generation to the pipeline. See merge request spexeah/asuro!19
This commit is contained in:
		
							
								
								
									
										115
									
								
								.gitlab-ci.yml
									
									
									
									
									
								
							
							
						
						
									
										115
									
								
								.gitlab-ci.yml
									
									
									
									
									
								
							| @@ -1,39 +1,96 @@ | ||||
| # This file is a template, and might need editing before it works on your project. | ||||
| # see https://docs.gitlab.com/ee/ci/yaml/README.html for all available options | ||||
| stages: | ||||
|   - Generate Stub and Versions | ||||
|   - Generate Version Files | ||||
|   - Compile Sources | ||||
|   - Link | ||||
|   - Generate ISO | ||||
|   - Generate Sources List | ||||
|   - Generate Documentation | ||||
|  | ||||
| .before_script: | ||||
|   - echo "Before script section" | ||||
|   - echo "For example you might run an update here or install a build dependency" | ||||
|   - echo "Or perhaps you might print out some debugging details" | ||||
|  | ||||
| .after_script: | ||||
|   - echo "After script section" | ||||
|   - echo "For example you might do some cleanup here" | ||||
|  | ||||
| build: | ||||
|   stage: build | ||||
|   tags: | ||||
|     - asuro | ||||
|   script: ./compile.sh | ||||
| compile_stub: | ||||
|   stage: Generate Stub and Versions | ||||
|   script:  | ||||
|     - chmod +x ./compile_stub.sh | ||||
|     - ./compile_stub.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - lib/stub.o | ||||
|  | ||||
| vergen: | ||||
|   stage: Generate Stub and Versions | ||||
|   script:  | ||||
|     - chmod +x ./compile_vergen.sh | ||||
|     - ./compile_vergen.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - release/Asuro.iso | ||||
|       - iso/boot/asuro.bin | ||||
|       - release/*.svg | ||||
|       - src/include/asuro.pas | ||||
|  | ||||
| .test1: | ||||
|   stage: test | ||||
| compile_sources: | ||||
|   stage: Compile Sources | ||||
|   script: | ||||
|     - echo "Do a test here" | ||||
|     - echo "For example run a test suite" | ||||
|     - chmod +x ./compile_sources.sh | ||||
|     - ./compile_sources.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - lib/*.o | ||||
|   dependencies: | ||||
|     - compile_stub | ||||
|     - vergen | ||||
|   needs: | ||||
|     - vergen | ||||
|     - compile_stub | ||||
|  | ||||
| .test2: | ||||
|   stage: test | ||||
| link: | ||||
|   stage: Link | ||||
|   script: | ||||
|     - echo "Do another parallel test here" | ||||
|     - echo "For example run a lint test" | ||||
|     - chmod +x ./compile_link.sh | ||||
|     - ./compile_link.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - bin/kernel.bin | ||||
|   dependencies: | ||||
|     - compile_sources | ||||
|   needs: | ||||
|     - compile_sources | ||||
|  | ||||
| .deploy1: | ||||
|   stage: deploy | ||||
| isogen: | ||||
|   stage: Generate ISO | ||||
|   script: | ||||
|     - echo "Do your deploy here" | ||||
|     - chmod +x ./compile_isogen.sh | ||||
|     - ./compile_isogen.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - ./Asuro.iso | ||||
|   dependencies: | ||||
|     - link | ||||
|   needs: | ||||
|     - link | ||||
|  | ||||
| sourcelist: | ||||
|   stage: Generate Sources List | ||||
|   script: | ||||
|     - chmod +x ./compile_sourcelist.sh | ||||
|     - ./compile_sourcelist.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - ./sources.list | ||||
|   dependencies: | ||||
|     - vergen | ||||
|   needs: | ||||
|     - vergen | ||||
|  | ||||
| docgen: | ||||
|   stage: Generate Documentation | ||||
|   script: | ||||
|     - chmod +x ./compile_docs.sh | ||||
|     - ./compile_docs.sh | ||||
|   artifacts: | ||||
|     paths: | ||||
|       - ./doc/* | ||||
|   dependencies: | ||||
|     - vergen | ||||
|     - sourcelist | ||||
|   needs: | ||||
|     - vergen | ||||
|     - sourcelist | ||||
| @@ -2,8 +2,8 @@ FROM ubuntu:latest | ||||
|  | ||||
| VOLUME ["/code"] | ||||
|  | ||||
| RUN dpkg --add-architecture i386 && \ | ||||
| 	apt-get update | ||||
| RUN dpkg --add-architecture i386 | ||||
| RUN apt-get update | ||||
| RUN apt-get install nasm curl make:i386 binutils:i386 xorriso grub-pc-bin dos2unix -y | ||||
| RUN apt-get clean | ||||
| RUN curl https://sourceforge.net/projects/freepascal/files/Linux/2.6.4/fpc-2.6.4.i386-linux.tar/download --output fpc.tar -L && \ | ||||
|   | ||||
							
								
								
									
										82
									
								
								compile.sh
									
									
									
									
									
								
							
							
						
						
									
										82
									
								
								compile.sh
									
									
									
									
									
								
							| @@ -2,18 +2,12 @@ | ||||
| ERRCOUNT=0 | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo "== ASURO COMPILATION ==" | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Checking out latest VM Source..." | ||||
| echo "Asuro Compilation" | ||||
| echo " " | ||||
| ./updatevm.sh | ||||
| echo " " | ||||
| echo "Compiling ASM Stub..." | ||||
| echo " " | ||||
| rm lib/* | ||||
|  | ||||
| nasm -f elf src/stub/stub.asm -o lib/stub.o | ||||
| #Compile Stub.asm | ||||
| ./compile_stub.sh | ||||
| if [ $? -ne 0 ] | ||||
| then | ||||
| 	echo "Failed to compile stub!" | ||||
| @@ -22,47 +16,23 @@ else | ||||
| 	echo "Success." | ||||
| fi | ||||
|  | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
|  | ||||
| ./versioning.sh | ||||
|  | ||||
| if [ "$1" = "-d" ] | ||||
| then | ||||
| 	echo "Compiling Debug FPC Sources..." | ||||
| 	echo " " | ||||
| 	fpc -Aelf -gw -n -va -O3 -Op3 -Si -Sc -Sg -Xd -CX -XXs -CfSSE -CfSSE2 -Rintel -Pi386 -Tlinux -FElib/ -Fusrc/* -Fusrc/driver/* src/kernel.pas | ||||
| else | ||||
| 	echo "Compiling FPC Sources..." | ||||
| 	echo " " | ||||
| 	fpc -Aelf -gw -n -va -O3 -Op3 -Si -Sc -Sg -Xd -CX -XXs -CfSSE -CfSSE2 -Rintel -Pi386 -Tlinux -FElib/ -Fusrc/* -Fusrc/driver/* -Fusrc/driver/net/* src/kernel.pas | ||||
| fi | ||||
| #Generate .pas with versioning headers. | ||||
| ./compile_vergen.sh | ||||
|  | ||||
| #Compile all .pas sources | ||||
| ./compile_sources.sh | ||||
| if [ $? -ne 0 ] | ||||
| then | ||||
| 	echo " " | ||||
| 	echo "Failed to compile FPC Sources!" | ||||
| 	ERRCOUNT=$((ERRCOUNT+1))	 | ||||
| else | ||||
| 	echo " " | ||||
| 	echo "Success." | ||||
| fi | ||||
|  | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Linking..." | ||||
| echo " " | ||||
| objstring="";  | ||||
| for object in `find lib/ -name "*.o"`; do | ||||
| 	if [ "$object" != "lib/stub.o" ] | ||||
| 	then | ||||
| 		objstring=$objstring$object" "; | ||||
| 	fi | ||||
| done; | ||||
| objstring=lib/stub.o" "$objstring  | ||||
| echo "Object Files: "$objstring | ||||
| echo " " | ||||
| ld -m elf_i386 -s --gc-sections -Tlinker.script -o bin/kernel.bin $objstring | ||||
| #Link into a binary. | ||||
| ./compile_link.sh | ||||
| if [ $? -ne 0 ] | ||||
| then | ||||
| 	echo "Failed linking!" | ||||
| @@ -71,13 +41,8 @@ else | ||||
| 	echo "Success." | ||||
| fi | ||||
|  | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Creating ISO..." | ||||
| echo " " | ||||
| cp bin/kernel.bin iso/boot/asuro.bin | ||||
| grub-mkrescue -o Asuro.iso iso | ||||
| #Generate an ISO with GRUB as the Bootloader. | ||||
| ./compile_isogen.sh | ||||
| if [ $? -ne 0 ] | ||||
| then | ||||
| 	echo "Failed to create ISO!" | ||||
| @@ -86,27 +51,12 @@ else | ||||
| 	echo "Success." | ||||
| fi | ||||
|  | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| #Call generate final artifacts based on failure or success of the above. | ||||
| if [ "$ERRCOUNT" -ne "0" ] | ||||
| then | ||||
| 	echo "$ERRCOUNT Errors Occurred, please review." | ||||
| 	wget -q https://img.shields.io/badge/build-failed-red.svg -O release/build.svg | ||||
| 	./compile_finish.sh "failed" | ||||
| else | ||||
| 	echo "No errors." | ||||
| 	wget -q https://img.shields.io/badge/build-succeeded-green.svg -O release/build.svg	 | ||||
| 	./compile_finish.sh "success" | ||||
| fi | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
|  | ||||
| #cp Asuro.iso ~/host/Asuro.iso | ||||
| cp Asuro.iso release/Asuro.iso | ||||
|  | ||||
| checksum=$(md5sum release/Asuro.iso | awk '{print $1}') | ||||
| wget -q https://img.shields.io/badge/checksum-$checksum-important.svg -O release/checksum.svg	 | ||||
| cd release | ||||
| touch * | ||||
| #svn commit -m "Versioning Auto-Commit" | ||||
| cd .. | ||||
|   | ||||
| @@ -1,7 +0,0 @@ | ||||
| #!/bin/sh | ||||
| ERRCOUNT=0 | ||||
| echo "=======================" | ||||
| echo "==       ASURO       ==" | ||||
| echo "=======================" | ||||
| ./compile.sh | ||||
| ./run.sh | ||||
| @@ -1,7 +0,0 @@ | ||||
| #!/bin/sh | ||||
| ERRCOUNT=0 | ||||
| echo "=======================" | ||||
| echo "==       ASURO       ==" | ||||
| echo "=======================" | ||||
| ./compile.sh -d | ||||
| ./run.sh -d | ||||
							
								
								
									
										0
									
								
								checksum.sh → compile_checksum.sh
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										0
									
								
								checksum.sh → compile_checksum.sh
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,2 +0,0 @@ | ||||
| #!/bin/sh | ||||
| ./compile.sh -d | ||||
							
								
								
									
										18
									
								
								compile_docs.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								compile_docs.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| #!/bin/bash | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Generating Documentation..." | ||||
| echo " " | ||||
| echo "Dowloading Pasdoc..." | ||||
| wget https://github.com/pasdoc/pasdoc/releases/download/v0.16.0/pasdoc-0.16.0-linux-x86_64.tar.gz -O pasdoc.tar.gz | ||||
| echo "Extracting Pasdoc..." | ||||
| tar -xf pasdoc.tar.gz | ||||
| echo "Creating doc output directory..." | ||||
| mkdir ./doc | ||||
| echo "Removing old docs" | ||||
| rm -rf ./doc/* | ||||
| echo "Generating Docs..." | ||||
| ./pasdoc/bin/pasdoc -N "Asuro" -T "Asuro OS Documentation" -O "html" -E ./doc/ -S sources.list --use-tipue-search | ||||
| echo "Docgen finished." | ||||
| exit 0 | ||||
							
								
								
									
										18
									
								
								compile_finish.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								compile_finish.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| #/bin/sh | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| if [ "$1" == "failed" ] | ||||
| then | ||||
| 	echo "Errors Occurred, please review." | ||||
| 	wget -q https://img.shields.io/badge/build-failed-red.svg -O release/build.svg 2>/dev/null | ||||
|     echo " " | ||||
|     echo "=======================" | ||||
|     exit 1 | ||||
| else | ||||
| 	echo "No errors." | ||||
| 	wget -q https://img.shields.io/badge/build-succeeded-green.svg -O release/build.svg	2>/dev/null | ||||
|     echo " " | ||||
|     echo "=======================" | ||||
|     exit 0 | ||||
| fi | ||||
							
								
								
									
										8
									
								
								compile_isogen.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								compile_isogen.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| #!/bin/sh | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Creating ISO..." | ||||
| echo " " | ||||
| cp bin/kernel.bin iso/boot/asuro.bin | ||||
| grub-mkrescue -o Asuro.iso iso | ||||
							
								
								
									
										17
									
								
								compile_link.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								compile_link.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| #!/bin/sh | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Linking..." | ||||
| echo " " | ||||
| objstring="";  | ||||
| for object in `find lib/ -name "*.o"`; do | ||||
| 	if [ "$object" != "lib/stub.o" ] | ||||
| 	then | ||||
| 		objstring=$objstring$object" "; | ||||
| 	fi | ||||
| done; | ||||
| objstring=lib/stub.o" "$objstring  | ||||
| echo "Object Files: "$objstring | ||||
| echo " " | ||||
| ld -m elf_i386 -s --gc-sections -Tlinker.script -o bin/kernel.bin $objstring | ||||
							
								
								
									
										9
									
								
								compile_sourcelist.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								compile_sourcelist.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| #!/bin/bash | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Generating Source List..." | ||||
| echo " " | ||||
| find "$(cd ..; pwd)" -name "*.pas" > sources.list | ||||
| echo "Finished Source List Generation." | ||||
| exit 0 | ||||
							
								
								
									
										7
									
								
								compile_sources.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								compile_sources.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| #!/bin/sh | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Compiling FPC Sources..." | ||||
| echo " " | ||||
| fpc -Aelf -gw -n -va -O3 -Op3 -Si -Sc -Sg -Xd -CX -XXs -CfSSE -CfSSE2 -Rintel -Pi386 -Tlinux -FElib/ -Fusrc/* -Fusrc/driver/* -Fusrc/driver/net/* src/kernel.pas | ||||
							
								
								
									
										8
									
								
								compile_stub.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								compile_stub.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| #!/bin/sh | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Compiling Stub..." | ||||
| echo " " | ||||
| rm lib/* | ||||
| nasm -f elf src/stub/stub.asm -o lib/stub.o | ||||
							
								
								
									
										8
									
								
								compile_sumgen.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								compile_sumgen.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| #/bin/sh | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Generating Checksum Badge..." | ||||
| echo " " | ||||
| checksum=$(md5sum Asuro.iso | awk '{print $1}') | ||||
| wget -q https://img.shields.io/badge/checksum-$checksum-important.svg -O release/checksum.svg 2>/dev/null | ||||
							
								
								
									
										29
									
								
								versioning.sh → compile_vergen.sh
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										29
									
								
								versioning.sh → compile_vergen.sh
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							| @@ -1,6 +1,11 @@ | ||||
| #!/bin/bash | ||||
| echo " " | ||||
| echo "=======================" | ||||
| echo " " | ||||
| echo "Generating Versioning Info..." | ||||
| ./checksum.sh | ||||
| echo " " | ||||
| chmod +x ./compile_checksum.sh | ||||
| ./compile_checksum.sh | ||||
| outfile="src/include/asuro.pas" | ||||
| file="version" | ||||
| while IFS=: read -r line;do | ||||
| @@ -44,15 +49,15 @@ echo "implementation" >> $outfile | ||||
| echo " " >> $outfile | ||||
| echo "end." >> $outfile | ||||
| echo "Generating release info..." | ||||
| wget -q https://img.shields.io/badge/version-$major.$minor.$sub--$revision$release-blue.svg -O release/version.svg | ||||
| wget -q https://img.shields.io/badge/revision-$revision-blue.svg -O release/revision.svg | ||||
| wget -q https://img.shields.io/badge/release-$release-blue.svg -O release/release.svg | ||||
| wget -q https://img.shields.io/badge/lines-$linecount-blueviolet.svg -O release/lines.svg | ||||
| wget -q https://img.shields.io/badge/files-$sourcecount-blueviolet.svg -O release/files.svg | ||||
| wget -q https://img.shields.io/badge/drivers-$drivercount-blueviolet.svg -O release/drivers.svg | ||||
| wget -q https://img.shields.io/badge/FPC_version-$fpcversion-lightgrey.svg -O release/fpcversion.svg | ||||
| wget -q https://img.shields.io/badge/NASM_version-$nasmversion-lightgrey.svg -O release/nasmversion.svg | ||||
| wget -q https://img.shields.io/badge/MAKE_version-$makeversion-lightgrey.svg -O release/makeversion.svg | ||||
| wget -q https://img.shields.io/badge/release_date-$compiledate-lightgrey.svg -O release/date.svg | ||||
| wget -q https://img.shields.io/badge/fingerprint-$checksum-important.svg -O release/fingerprint.svg | ||||
| wget -q https://img.shields.io/badge/version-$major.$minor.$sub--$revision$release-blue.svg -O release/version.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/revision-$revision-blue.svg -O release/revision.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/release-$release-blue.svg -O release/release.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/lines-$linecount-blueviolet.svg -O release/lines.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/files-$sourcecount-blueviolet.svg -O release/files.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/drivers-$drivercount-blueviolet.svg -O release/drivers.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/FPC_version-$fpcversion-lightgrey.svg -O release/fpcversion.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/NASM_version-$nasmversion-lightgrey.svg -O release/nasmversion.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/MAKE_version-$makeversion-lightgrey.svg -O release/makeversion.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/release_date-$compiledate-lightgrey.svg -O release/date.svg 2>/dev/null | ||||
| wget -q https://img.shields.io/badge/fingerprint-$checksum-important.svg -O release/fingerprint.svg 2>/dev/null | ||||
| echo "Done versioning." | ||||
							
								
								
									
										60
									
								
								doc/ACE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/ACE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: ACE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit ACE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>ACE</code> - Alignment Check Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="ACE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,249 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: All Classes, Interfaces, Objects and Records</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">All Classes, Interfaces, Objects and Records</h1> | ||||
| <table class="itemstable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemunit">Unit</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.elf_section_header_table_t.html">elf_section_header_table_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.memory_map_t.html">memory_map_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.module_t.html">module_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.multiboot_info_t.html">multiboot_info_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TARPAbstractHeader.html">TARPAbstractHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="arp.html">ARP</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="arp.TARPCacheRecord.html">TARPCacheRecord</a></td> | ||||
| <td class="itemunit"><a class="bold" href="arp.html">arp</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="icmp.TARPHandler.html">TARPHandler</a></td> | ||||
| <td class="itemunit"><a class="bold" href="icmp.html">icmp</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="cpu.TClockSpeed.html">TClockSpeed</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.TCommand.html">TCommand</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.TCounters.html">TCounters</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="cpu.TCPUID.html">TCPUID</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="RTC.TDateTime.html">TDateTime</a></td> | ||||
| <td class="itemunit"><a class="bold" href="RTC.html">RTC</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.TDevEx.html">TDevEx</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.TDeviceIdentifier.html">TDeviceIdentifier</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.TDeviceRegistration.html">TDeviceRegistration</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.TDriverRegistration.html">TDriverRegistration</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="gdt.TGDT_Entry.html">TGDT_Entry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="gdt.TGDT_Pointer.html">TGDT_Pointer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.THeapPage.html">THeapPage</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.THistory.html">THistory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TICMPHeader.html">TICMPHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="idt.TIDT_Entry.html">TIDT_Entry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.TIDT_Pointer.html">TIDT_Pointer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TIPV4AbstractHeader.html">TIPV4AbstractHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TIPv4Configuration.html">TIPv4Configuration</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TIPv4Pair.html">TIPv4Pair</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.TKeyInfo.html">TKeyInfo</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lists.TLinkedList.html">TLinkedList</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lists.html">lists</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lists.TLinkedListBase.html">TLinkedListBase</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lists.html">lists</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TMACPair.html">TMACPair</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="mouse.TMousePacket.html">TMousePacket</a></td> | ||||
| <td class="itemunit"><a class="bold" href="mouse.html">mouse</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="mouse.TMousePos.html">TMousePos</a></td> | ||||
| <td class="itemunit"><a class="bold" href="mouse.html">mouse</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="OHCI.TOHCI_MMR.html">TOHCI_MMR</a></td> | ||||
| <td class="itemunit"><a class="bold" href="OHCI.html">OHCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TPacketContext.html">TPacketContext</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.TParamList.html">TParamList</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="pmemorymanager.TPhysicalMemoryEntry.html">TPhysicalMemoryEntry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="pmemorymanager.html">pmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TProtocol.html">TProtocol</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.TRegisters.html">TRegisters</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.TScheduler_Entry.html">TScheduler_Entry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p>EAX, EDX,</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.TTaskState.html">TTaskState</a></td> | ||||
| <td class="itemunit"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="tss.TTaskStateSegment.html">TTaskStateSegment</a></td> | ||||
| <td class="itemunit"><a class="bold" href="tss.html">tss</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.TTCPFlags.html">TTCPFlags</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,644 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: All Constants</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">All Constants</h1> | ||||
| <table class="itemstable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemunit">Unit</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#ALLOC_SPACE">ALLOC_SPACE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html#BDA">BDA</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#BROADCAST_MAC">BROADCAST_MAC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>MACs</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#BSOD_ENABLE">BSOD_ENABLE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#CHECKSUM">CHECKSUM</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_EOP">CMD_EOP</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Transmit Command</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_IC">CMD_IC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Insert FCS</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_IDE">CMD_IDE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>VLAN Packet Enable</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_IFCS">CMD_IFCS</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>End of Packet</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_RPS">CMD_RPS</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Report Status</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_RS">CMD_RS</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Insert <a class="normal" href="asuro.html#CHECKSUM">Checksum</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#CMD_VLE">CMD_VLE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Report Packet Sent</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="serial.html#COM1">COM1</a></td> | ||||
| <td class="itemunit"><a class="bold" href="serial.html">serial</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="serial.html#COM2">COM2</a></td> | ||||
| <td class="itemunit"><a class="bold" href="serial.html">serial</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="serial.html#COM3">COM3</a></td> | ||||
| <td class="itemunit"><a class="bold" href="serial.html">serial</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="serial.html#COM4">COM4</a></td> | ||||
| <td class="itemunit"><a class="bold" href="serial.html">serial</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#COMPILE_DATE">COMPILE_DATE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#COMPILE_TIME">COMPILE_TIME</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#CONSOLE_SLOW_REDRAW">CONSOLE_SLOW_REDRAW</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#DATA_OFFSET">DATA_OFFSET</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="console.html#DefaultWND">DefaultWND</a></td> | ||||
| <td class="itemunit"><a class="bold" href="console.html">console</a></td> | ||||
| <td class="itemdesc"><p>The Window assigned for <a class="normal" href="console.html#Output">output</a> when no Window is specified.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#DRIVER_COUNT">DRIVER_COUNT</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#E1000_DEV">E1000_DEV</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#E1000_NUM_RX_DESC">E1000_NUM_RX_DESC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Transmit Underrun</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#E1000_NUM_TX_DESC">E1000_NUM_TX_DESC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#ECTRL_SLU">ECTRL_SLU</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Transmit Inter Packet Gap</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#FILE_COUNT">FILE_COUNT</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#FORCE_MAC">FORCE_MAC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#FPC_VERSION">FPC_VERSION</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#I217_DEV">I217_DEV</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#ICMP_DATA_GENERIC">ICMP_DATA_GENERIC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="icmp.html">ICMP</a> Data</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#idANY">idANY</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#INTEL_VEND">INTEL_VEND</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#ISR_RING_0">ISR_RING_0</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#ISR_RING_1">ISR_RING_1</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#ISR_RING_2">ISR_RING_2</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#ISR_RING_3">ISR_RING_3</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#KERNEL_PAGE_NUMBER">KERNEL_PAGE_NUMBER</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#KERNEL_STACKSIZE">KERNEL_STACKSIZE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#KERNEL_VIRTUAL_BASE">KERNEL_VIRTUAL_BASE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#LINE_COUNT">LINE_COUNT</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#LM82577_DEV">LM82577_DEV</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#LSTA_TU">LSTA_TU</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Late Collision</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#MAKE_VERSION">MAKE_VERSION</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#MAX_ENTRIES">MAX_ENTRIES</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p>64-Bit Allocations</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.html#MAX_HOOKS">MAX_HOOKS</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="console.html#MAX_WINDOWS">MAX_WINDOWS</a></td> | ||||
| <td class="itemunit"><a class="bold" href="console.html">console</a></td> | ||||
| <td class="itemdesc"><p>Maximum number of Windows open.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#MULTIBOOT_BOOTLOADER_MAGIC">MULTIBOOT_BOOTLOADER_MAGIC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#NASM_VERSION">NASM_VERSION</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#NULL_MAC">NULL_MAC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#PCI_PORT_CONF_ADDR">PCI_PORT_CONF_ADDR</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#PCI_PORT_CONF_DATA">PCI_PORT_CONF_DATA</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.html#Quantum">Quantum</a></td> | ||||
| <td class="itemunit"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BAM">RCTL_BAM</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Multicast Offset - bits 43:32</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_1024">RCTL_BSIZE_1024</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_16384">RCTL_BSIZE_16384</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_2048">RCTL_BSIZE_2048</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_256">RCTL_BSIZE_256</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Strip Ethernet <a class="normal" href="crc.html">CRC</a> <a class="normal" href="terminal.html#buffer">Buffer</a> Sizes</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_4096">RCTL_BSIZE_4096</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_512">RCTL_BSIZE_512</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_BSIZE_8192">RCTL_BSIZE_8192</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_CFI">RCTL_CFI</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Canonical Form Indicator Enable</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_CFIEN">RCTL_CFIEN</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>VLAN Filter Enable</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_DPF">RCTL_DPF</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Canonical Form Indicator Bit Value</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_EN">RCTL_EN</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>set link up</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_LBM_NONE">RCTL_LBM_NONE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Long Packet Reception Enable</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_LBM_PHY">RCTL_LBM_PHY</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>No Loopback</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_LPE">RCTL_LPE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Multicast Promiscuous Enabled</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_MO_32">RCTL_MO_32</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Multicast Offset - bits 45:34</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_MO_34">RCTL_MO_34</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Multicast Offset - bits 46:35</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_MO_35">RCTL_MO_35</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Multicast Offset - bits 47:36</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_MO_36">RCTL_MO_36</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Free <a class="normal" href="terminal.html#buffer">Buffer</a> Threshold is 1/8 of RDLEN</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_MPE">RCTL_MPE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Unicast Promiscuous Enabled</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_PMCF">RCTL_PMCF</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Discard Pause Frames</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_SBP">RCTL_SBP</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Receiver Enable</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_SECRC">RCTL_SECRC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Pass MAC Control Frames</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_UPE">RCTL_UPE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Store Bad Packets</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RCTL_VFE">RCTL_VFE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Broadcast Accept Mode</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_CTRL">REG_CTRL</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_CTRL_EXT">REG_CTRL_EXT</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_EEPROM">REG_EEPROM</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_IMASK">REG_IMASK</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RADV">REG_RADV</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>RX Descriptor Control</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RCTRL">REG_RCTRL</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RDTR">REG_RDTR</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RSRPD">REG_RSRPD</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>RX Int.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RXDCTL">REG_RXDCTL</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>RX Delay Timer <a class="normal" href="ACE.html#register">Register</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RXDESCHEAD">REG_RXDESCHEAD</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RXDESCHI">REG_RXDESCHI</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RXDESCLEN">REG_RXDESCLEN</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RXDESCLO">REG_RXDESCLO</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_RXDESCTAIL">REG_RXDESCTAIL</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_STATUS">REG_STATUS</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TCTRL">REG_TCTRL</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TIPG">REG_TIPG</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>RX Small Packet Detect Interrupt</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TXDESCHEAD">REG_TXDESCHEAD</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TXDESCHI">REG_TXDESCHI</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TXDESCLEN">REG_TXDESCLEN</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TXDESCLO">REG_TXDESCLO</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#REG_TXDESCTAIL">REG_TXDESCTAIL</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#RELEASE">RELEASE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#REVISION">REVISION</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RTCL_RDMTS_EIGHTH">RTCL_RDMTS_EIGHTH</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Free <a class="normal" href="terminal.html#buffer">Buffer</a> Threshold is 1/4 of RDLEN</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RTCL_RDMTS_HALF">RTCL_RDMTS_HALF</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>PHY or external SerDesc loopback</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#RTCL_RDMTS_QUARTER">RTCL_RDMTS_QUARTER</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Free <a class="normal" href="terminal.html#buffer">Buffer</a> Threshold is 1/2 of RDLEN</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="fonts.html#Std_Font">Std_Font</a></td> | ||||
| <td class="itemunit"><a class="bold" href="fonts.html">fonts</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="fonts.html#Std_Mask">Std_Mask</a></td> | ||||
| <td class="itemunit"><a class="bold" href="fonts.html">fonts</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCTL_COLD_SHIFT">TCTL_COLD_SHIFT</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Collision Threshold</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCTL_CT_SHIFT">TCTL_CT_SHIFT</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Pad Short Packets</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCTL_EN">TCTL_EN</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Interrupt Delay Enable TCTL <a class="normal" href="ACE.html#register">Register</a></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCTL_PSP">TCTL_PSP</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Transmit Enable</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCTL_RTLC">TCTL_RTLC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Software XOFF Transmission</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCTL_SWXOFF">TCTL_SWXOFF</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Collision Distance</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#TRACER_ENABLE">TRACER_ENABLE</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TSTA_DD">TSTA_DD</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Re-transmit on Late Collision</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TSTA_EC">TSTA_EC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Descriptor <a class="normal" href="terminal.html#done">Done</a></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TSTA_LC">TSTA_LC</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Excess Collisions</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#VERSION">VERSION</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#VERSION_MAJOR">VERSION_MAJOR</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#VERSION_MINOR">VERSION_MINOR</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html#VERSION_SUB">VERSION_SUB</a></td> | ||||
| <td class="itemunit"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,734 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: All Types</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">All Types</h1> | ||||
| <table class="itemstable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemunit">Unit</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#cardinal">cardinal</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p>Redraws the Window manager after every character, but slows performance.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#dword">dword</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#Float">Float</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#hresult">hresult</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#HWND">HWND</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#integer">integer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="arp.html#PARPCacheRecord">PARPCacheRecord</a></td> | ||||
| <td class="itemunit"><a class="bold" href="arp.html">arp</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#PARPHeader">PARPHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html#PBDA">PBDA</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PBitMask">PBitMask</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#PCapabilities_New">PCapabilities_New</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#PCapabilities_Old">PCapabilities_Old</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#pchar">pchar</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#PDevEx">PDevEx</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#PDeviceRegistration">PDeviceRegistration</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PDouble">PDouble</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#PE1000_rx_desc">PE1000_rx_desc</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#PE1000_tx_desc">PE1000_tx_desc</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#Pelf_section_header_table_t">Pelf_section_header_table_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#PEthernetHeader">PEthernetHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="eth2.html">ETH2</a></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PFloat">PFloat</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="gdt.html#PGDT_Entry">PGDT_Entry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#PHeapPage">PHeapPage</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#PHistory">PHistory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#PICMPHeader">PICMPHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="icmp.html">ICMP</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#PIDT_Entry">PIDT_Entry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#PIDT_Pointer">PIDT_Pointer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#PIPv4Configuration">PIPv4Configuration</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>Config</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#PIPV4Header">PIPV4Header</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="ipv4.html">IPv4</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#PKeyInfo">PKeyInfo</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lists.html#PLinkedList">PLinkedList</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lists.html">lists</a></td> | ||||
| <td class="itemdesc"><p>Managed Linked List</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lists.html#PLinkedListBase">PLinkedListBase</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lists.html">lists</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PMask">PMask</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html#PMCFG">PMCFG</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#Pmemory_map_t">Pmemory_map_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#Pmodule_t">Pmodule_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="mouse.html#PMousePacket">PMousePacket</a></td> | ||||
| <td class="itemunit"><a class="bold" href="mouse.html">mouse</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#Pmultiboot_info_t">Pmultiboot_info_t</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="OHCI.html#POHCI_MMR">POHCI_MMR</a></td> | ||||
| <td class="itemunit"><a class="bold" href="OHCI.html">OHCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#PPacketContext">PPacketContext</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>Context</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html#PPageDirectory">PPageDirectory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html#PPageDirEntry">PPageDirEntry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#PParamList">PParamList</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivertypes.html#PPCI_Device">PPCI_Device</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivertypes.html">drivertypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.html#pp_hook_method">pp_hook_method</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#pp_hook_method">pp_hook_method</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.html#pp_void">pp_void</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.html#PRegisters">PRegisters</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PRGB565">PRGB565</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PRGB565Pair">PRGB565Pair</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.html#PScheduler_Entry">PScheduler_Entry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PsInt16">PsInt16</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PsInt32">PsInt32</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PsInt64">PsInt64</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PsInt8">PsInt8</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="tss.html#PTaskStateSegment">PTaskStateSegment</a></td> | ||||
| <td class="itemunit"><a class="bold" href="tss.html">tss</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PuByte">PuByte</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p>Pointer <a class="normal" href="types.html">Types</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PuInt16">PuInt16</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PuInt32">PuInt32</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PuInt64">PuInt64</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#PuInt8">PuInt8</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#sInt16">sInt16</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#sInt32">sInt32</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#sInt64">sInt64</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#sInt8">sInt8</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="icmp.html#TARPErrorCallback">TARPErrorCallback</a></td> | ||||
| <td class="itemunit"><a class="bold" href="icmp.html">icmp</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="icmp.html#TARPErrorCode">TARPErrorCode</a></td> | ||||
| <td class="itemunit"><a class="bold" href="icmp.html">icmp</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TARPHeader">TARPHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="icmp.html#TARPReplyCallback">TARPReplyCallback</a></td> | ||||
| <td class="itemunit"><a class="bold" href="icmp.html">icmp</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html#TBDA">TBDA</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#TBitMask">TBitMask</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#TBusIdentifier">TBusIdentifier</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#TCapabilities_New">TCapabilities_New</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#TCapabilities_Old">TCapabilities_Old</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TCardType">TCardType</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="console.html#TColor">TColor</a></td> | ||||
| <td class="itemunit"><a class="bold" href="console.html">console</a></td> | ||||
| <td class="itemdesc"><p>4-bit nibble representing a color.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#TCommandBuffer">TCommandBuffer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#TCommandMethod">TCommandMethod</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivertypes.html#TDeviceArray">TDeviceArray</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivertypes.html">drivertypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TE1000_rx_desc">TE1000_rx_desc</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html#TE1000_tx_desc">TE1000_tx_desc</a></td> | ||||
| <td class="itemunit"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TEthernetHeader">TEthernetHeader</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="console.html#TEventType">TEventType</a></td> | ||||
| <td class="itemunit"><a class="bold" href="console.html">console</a></td> | ||||
| <td class="itemdesc"><p>Window Manager Events.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#THaltCallback">THaltCallback</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#THeapEntry">THeapEntry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TIPv4Address">TIPv4Address</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TIPV4Header">TIPV4Header</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isrmanager.html#TISRHook">TISRHook</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isrmanager.html">isrmanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="isrmanager.html#TISRHookArray">TISRHookArray</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isrmanager.html">isrmanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isrmanager.html#TISRNHookArray">TISRNHookArray</a></td> | ||||
| <td class="itemunit"><a class="bold" href="isrmanager.html">isrmanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TMACAddress">TMACAddress</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>Generic</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#TMask">TMask</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html#TMCFG">TMCFG</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TNetSendCallback">TNetSendCallback</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>Callback <a class="normal" href="types.html">Types</a></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html#TPageDirectory">TPageDirectory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html#TPageDirEntry">TPageDirEntry</a></td> | ||||
| <td class="itemunit"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivertypes.html#TPCI_Device">TPCI_Device</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivertypes.html">drivertypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#TPCI_Device_Bridge">TPCI_Device_Bridge</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="pmemorymanager.html#TPhysicalMemory">TPhysicalMemory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="pmemorymanager.html">pmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html#TRecvCallback">TRecvCallback</a></td> | ||||
| <td class="itemunit"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#TRGB565">TRGB565</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#TRGB565Pair">TRGB565Pair</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit1">UBit1</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p>Alternate <a class="normal" href="types.html">Types</a></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit10">UBit10</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit11">UBit11</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit12">UBit12</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit13">UBit13</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit14">UBit14</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit15">UBit15</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit16">UBit16</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit17">UBit17</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit18">UBit18</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit19">UBit19</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit2">UBit2</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit20">UBit20</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit21">UBit21</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit22">UBit22</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit23">UBit23</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit24">UBit24</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit25">UBit25</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit26">UBit26</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit27">UBit27</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit28">UBit28</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit3">UBit3</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit30">UBit30</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit31">UBit31</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit4">UBit4</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit5">UBit5</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit6">UBit6</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit7">UBit7</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#UBit9">UBit9</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#uInt16">uInt16</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#uInt32">uInt32</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#uInt64">uInt64</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="system.html#uInt8">uInt8</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p>Standard <a class="normal" href="types.html">Types</a></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html#Void">Void</a></td> | ||||
| <td class="itemunit"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,370 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: All Units</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">All Units</h1> | ||||
| <table class="unitstable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="ACE.html">ACE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>ACE</code> - Alignment Check Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="arp.html">arp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L3-><code>ARP</code> - Address Resolution Protocol Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Asuro</code> - Auto-Generated <a class="normal" href="asuro.html#VERSION">Version</a> & Compilation Information | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>BIOS_Data_Area</code> - Data Structures Controlled by the BIOS.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="BPE.html">BPE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>BPE</code> - Break Point Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="BTSSE.html">BTSSE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>BTSSE</code> - Bad <a class="normal" href="tss.html">TSS</a> Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="CFE.html">CFE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>CFE</code> - Coprocessor Fault Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="console.html">console</a></td> | ||||
| <td class="itemdesc"><p><code>Console</code> - Provides Screen/Window management & drawing.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="contextswitcher.html">contextswitcher</a></td> | ||||
| <td class="itemdesc"><p><code>ContextSwitcher</code> - Switch Process Contexts when preempted.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p><code>CPU</code> - <code>CPU</code> Structures & Utility/Capabilities Functions.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="crc.html">crc</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>CRC</code> - <a class="normal" href="crc.html#CRC32">CRC32</a> Implementation.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="CSOE.html">CSOE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>CSOE</code> - Coprocessor Seg Overruun Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="DBGE.html">DBGE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>DBGE</code> - Debug Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="DBZ.html">DBZ</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>DBZ</code> - Divide By Zero Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="DFE.html">DFE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>DFE</code> - Double Fault Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p><code>DriverManagement</code> - Driver Initialization & Management Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivertypes.html">drivertypes</a></td> | ||||
| <td class="itemdesc"><p>Driver->Include-><code>DriverTypes</code> - Structs & Data Shared Across Drivers.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Driver->NetDev-><code>E1000</code> - Intel <code>E1000</code>/I217/82577LM Network Card Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="EHCI.html">EHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>EHCI</code> - Enhanced Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="eth2.html">eth2</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L2-><code>Eth2</code> - Ethernet Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="faults.html">faults</a></td> | ||||
| <td class="itemdesc"><p><code>Faults</code> - Fault Registration & Detouring.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="fonts.html">fonts</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Fonts</code> - Standard <code>Fonts</code> & Font Masks.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p>Global Descriptor Table - Data Structures & Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="GPF.html">GPF</a></td> | ||||
| <td class="itemdesc"><p>Fault-><a class="normal" href="util.html#GPF">GPF</a> - General Protection Fault.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="icmp.html">icmp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L4-><code>ICMP</code> - Internet Control Message Protocol Driver, | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="IDOE.html">IDOE</a></td> | ||||
| <td class="itemdesc"><p>Fault->IDO - Into Detected Overflow Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p>Interrupt Descriptor Table - Structures & Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="IOPE.html">IOPE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>IOPE</code> - Invalid OPCode Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="ipv4.html">ipv4</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L3-><code>IPv4</code> - Internet Protocol <a class="normal" href="asuro.html#VERSION">Version</a> 4 Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="irq.html">irq</a></td> | ||||
| <td class="itemdesc"><p>Interrupt Request Line - Initialization & Remapping.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isr.html">isr</a></td> | ||||
| <td class="itemdesc"><p><code>ISR</code> Driver - Initialization (stub).</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="isrmanager.html">isrmanager</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="isr.html">ISR</a>-><code>ISRManager</code> - Interrupt Service Routine Registration, Dispatch & Management.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="isr.html">ISR</a>-><code>ISR_Types</code> - Interrupt Service Routine Structures.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="kernel.html">kernel</a></td> | ||||
| <td class="itemdesc"><p><code>Kernel</code> Main - Main <code>Kernel</code> Entry Point.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p>Driver->HID-><code>Keyboard</code> - <code>Keyboard</code> Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lists.html">lists</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Lists</code> - Linked List Data Structures & Helpers.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p><code>LMemoryManager</code> - Logical Memory Management | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="MCE.html">MCE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>MCE</code> - Machine Check Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="memview.html">memview</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>MemView</code> - Live Memory View.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="mouse.html">mouse</a></td> | ||||
| <td class="itemdesc"><p>Driver->HID-><code>Mouse</code> - <code>Mouse</code> Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Multiboot</code> - <code>Multiboot</code> Structures & Access.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="NCE.html">NCE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>NCE</code> - No Coprocessor Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="net.html">net</a></td> | ||||
| <td class="itemdesc"><p>Driver-><code>Net</code>->L1-><code>Net</code> - Network Card<->Driver Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="netlog.html">netlog</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>NetLog</code> - Network Driver Logs.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>-><code>NetTypes</code> - Structures & <a class="normal" href="types.html">Types</a> Shared Across Network Drivers.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="netutils.html">netutils</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>-><code>NetUtils</code> - Helper Functions For Network Drivers.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="NMIE.html">NMIE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>NMIE</code> - Non-Maskable Interrupt Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="OHCI.html">OHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>OHCI</code> - Open Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="OOBE.html">OOBE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>OOBE</code> - Out Of Bounds Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>PCI</code> - Peripheral Component Interconnect Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="PF.html">PF</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>PF</code> - Page Fault.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="pmemorymanager.html">pmemorymanager</a></td> | ||||
| <td class="itemdesc"><p><code>PMemoryManager</code> - Physical Memory Management | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="processloader.html">processloader</a></td> | ||||
| <td class="itemdesc"><p><code>ProcessLoader</code> - Process Initialization & Tasking (stub).</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PS2_KEYBOARD_ISR.html">PS2_KEYBOARD_ISR</a></td> | ||||
| <td class="itemdesc"><p>Driver->HID->PS2_KEYBAORD_ISR - PS2 <a class="normal" href="isr.html">ISR</a> <a class="normal" href="PS2_KEYBOARD_ISR.html#hook">Hook</a> & Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="RTC.html">RTC</a></td> | ||||
| <td class="itemdesc"><p>Driver->Timers-><code>RTC</code> - Real Time Clock Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p><code>Scheduler</code> - Schedules Context Switches.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="serial.html">serial</a></td> | ||||
| <td class="itemdesc"><p>Driver->Interface-><code>Serial</code> - <code>Serial</code> Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="SFE.html">SFE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>SFE</code> - <a class="normal" href="util.html#stack">Stack</a> Fault Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="shell.html">shell</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Shell</code> - Main Desktop UI.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="SNPE.html">SNPE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>SNPE</code> - Segment Not Present Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="splash.html">splash</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Splash</code> - <a class="normal" href="asuro.html">Asuro</a> <code>Splash</code> Screen.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="strings.html">strings</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Strings</code> - String Manipulation.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>System</code> - Base <a class="normal" href="types.html">Types</a> & Structures.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="tcp.html">tcp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L4-><code>TCP</code> - Transmission Control Protocol Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Terminal</code> - Interactive Command Line Environment.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="testdriver.html">testdriver</a></td> | ||||
| <td class="itemdesc"><p>Driver->Exp-><code>TestDriver</code> - Dummy Driver For Testing.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="themer.html">themer</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Themer</code> - Live Desktop Color Picker.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="TMR_0_ISR.html">TMR_0_ISR</a></td> | ||||
| <td class="itemdesc"><p>Driver->Timer-><code>TMR_0_ISR</code> - 1024hz Timer Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="TMR_1_ISR.html">TMR_1_ISR</a></td> | ||||
| <td class="itemdesc"><p>Driver->Timer-><code>TMR_1_ISR</code> - 1024/s Timer Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="tracer.html">tracer</a></td> | ||||
| <td class="itemdesc"><p><code>Tracer</code> - Trace <a class="normal" href="util.html#stack">stack</a> for debugging method calls.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="tss.html">tss</a></td> | ||||
| <td class="itemdesc"><p><code>TSS</code> - Task State Segment (stub).</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="types.html">types</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Types</code> - Dummy Unit For VM Compatability.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="udp.html">udp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L4-><code>UDP</code> - User Datagram Protocol Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="UHCI.html">UHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>UHCI</code> - Universal Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="UIE.html">UIE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>UIE</code> - Unknown Interrupt Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="USB.html">USB</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>USB</code> - Universal <a class="normal" href="serial.html">Serial</a> Bus Driver/Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="util.html">util</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Util</code> - Data Manipulation Utlities.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p><code>VMemoryManager</code> - Virtual Memory Management.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="vmlog.html">vmlog</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>VMLog</code> - Virtual Machine Event Log.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmstate.html">vmstate</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>VMState</code> - Live MINJ Virtual Machine State Information.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="XHCI.html">XHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>XHCI</code> - eXtensible Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,239 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: All Variables</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">All Variables</h1> | ||||
| <table class="itemstable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemunit">Unit</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.html#Active">Active</a></td> | ||||
| <td class="itemunit"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#bIndex">bIndex</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#buffer">buffer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#busses">busses</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#bus_count">bus_count</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#captin_hook">captin_hook</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#CAP_NEW">CAP_NEW</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#CAP_OLD">CAP_OLD</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#Commands">Commands</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html#Counters">Counters</a></td> | ||||
| <td class="itemunit"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html#CPUID">CPUID</a></td> | ||||
| <td class="itemunit"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#Dev">Dev</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#devices">devices</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#device_count">device_count</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="util.html#endptr">endptr</a></td> | ||||
| <td class="itemunit"><a class="bold" href="util.html">util</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="gdt.html#gdt_entries">gdt_entries</a></td> | ||||
| <td class="itemunit"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="gdt.html#gdt_pointer">gdt_pointer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html#get_device_count">get_device_count</a></td> | ||||
| <td class="itemunit"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#HaltCB">HaltCB</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#Halted">Halted</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#HaltID">HaltID</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#History">History</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#IDT_Entries">IDT_Entries</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="idt.html#IDT_Pointer">IDT_Pointer</a></td> | ||||
| <td class="itemunit"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#is_alt">is_alt</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#is_ctrl">is_ctrl</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#is_shift">is_shift</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html#KERNEL_PAGE_DIRECTORY">KERNEL_PAGE_DIRECTORY</a></td> | ||||
| <td class="itemunit"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#key_matrix">key_matrix</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html#key_matrix_shift">key_matrix_shift</a></td> | ||||
| <td class="itemunit"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#multibootinfo">multibootinfo</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html#multibootmagic">multibootmagic</a></td> | ||||
| <td class="itemunit"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html#PageDirectory">PageDirectory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="tss.html#ptrTaskStateSegment">ptrTaskStateSegment</a></td> | ||||
| <td class="itemunit"><a class="bold" href="tss.html">tss</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html#Root">Root</a></td> | ||||
| <td class="itemunit"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#Root_Page">Root_Page</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html#Search_Page">Search_Page</a></td> | ||||
| <td class="itemunit"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="util.html#stack">stack</a></td> | ||||
| <td class="itemunit"><a class="bold" href="util.html">util</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="tss.html#TaskStateSegment">TaskStateSegment</a></td> | ||||
| <td class="itemunit"><a class="bold" href="tss.html">tss</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html#Working_Directory">Working_Directory</a></td> | ||||
| <td class="itemunit"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p> </p></td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/BPE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/BPE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: BPE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit BPE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>BPE</code> - Break Point Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="BPE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: BTSSE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit BTSSE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>BTSSE</code> - Bad <a class="normal" href="tss.html">TSS</a> Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="BTSSE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/CFE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/CFE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: CFE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit CFE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>CFE</code> - Coprocessor Fault Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="CFE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: CSOE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit CSOE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>CSOE</code> - Coprocessor Seg Overruun Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="CSOE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,34 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: Class Hierarchy</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">Class Hierarchy</h1> | ||||
| <p> | ||||
| The units do not contain any classes, interfaces or objects.</p> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: DBGE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit DBGE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>DBGE</code> - Debug Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="DBGE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/DBZ.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/DBZ.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: DBZ</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit DBZ</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>DBZ</code> - Divide By Zero Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="DBZ.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/DFE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/DFE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: DFE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit DFE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>DFE</code> - Double Fault Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="DFE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										1019
									
								
								doc/E1000.html
									
									
									
									
									
								
							
							
						
						
									
										1019
									
								
								doc/E1000.html
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: EHCI</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit EHCI</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Bus-><code>EHCI</code> - Enhanced Host Controller Interface Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="console.html">Console</a></li><li><a  href="PCI.html">PCI</a></li><li><a  href="drivertypes.html">drivertypes</a></li><li><a  href="pmemorymanager.html">pmemorymanager</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="EHCI.html#load">load</a></b> : boolean;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="load"></span><code>function <b>load</b> : boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/GPF.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/GPF.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: GPF</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit GPF</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><a class="normal" href="util.html#GPF">GPF</a> - General Protection Fault. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="GPF.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										509
									
								
								doc/GVUses.dot
									
									
									
									
									
								
							
							
						
						
									
										509
									
								
								doc/GVUses.dot
									
									
									
									
									
								
							| @@ -1,509 +0,0 @@ | ||||
| DiGraph Uses { | ||||
|   "ACE" -> "util" | ||||
|   "ACE" -> "console" | ||||
|   "ACE" -> "isr_types" | ||||
|   "ACE" -> "isrmanager" | ||||
|   "ACE" -> "IDT" | ||||
|   "ACE" [href="ACE.html"] | ||||
|   "arp" -> "tracer" | ||||
|   "arp" -> "lmemorymanager" | ||||
|   "arp" -> "util" | ||||
|   "arp" -> "lists" | ||||
|   "arp" -> "console" | ||||
|   "arp" -> "terminal" | ||||
|   "arp" -> "net" | ||||
|   "arp" -> "nettypes" | ||||
|   "arp" -> "netutils" | ||||
|   "arp" -> "netlog" | ||||
|   "arp" -> "eth2" | ||||
|   "arp" -> "ipv4" | ||||
|   "arp" [href="arp.html"] | ||||
|   "asuro" [href="asuro.html"] | ||||
|   "bios_data_area" [href="bios_data_area.html"] | ||||
|   "BPE" -> "util" | ||||
|   "BPE" -> "console" | ||||
|   "BPE" -> "isr_types" | ||||
|   "BPE" -> "isrmanager" | ||||
|   "BPE" -> "IDT" | ||||
|   "BPE" [href="BPE.html"] | ||||
|   "BTSSE" -> "util" | ||||
|   "BTSSE" -> "console" | ||||
|   "BTSSE" -> "isr_types" | ||||
|   "BTSSE" -> "isrmanager" | ||||
|   "BTSSE" -> "IDT" | ||||
|   "BTSSE" [href="BTSSE.html"] | ||||
|   "CFE" -> "util" | ||||
|   "CFE" -> "console" | ||||
|   "CFE" -> "isr_types" | ||||
|   "CFE" -> "isrmanager" | ||||
|   "CFE" -> "IDT" | ||||
|   "CFE" [href="CFE.html"] | ||||
|   "console" -> "util" | ||||
|   "console" -> "bios_data_area" | ||||
|   "console" -> "multiboot" | ||||
|   "console" -> "fonts" | ||||
|   "console" -> "tracer" | ||||
|   "console" [href="console.html"] | ||||
|   "contextswitcher" [href="contextswitcher.html"] | ||||
|   "cpu" -> "console" | ||||
|   "cpu" -> "util" | ||||
|   "cpu" -> "RTC" | ||||
|   "cpu" -> "terminal" | ||||
|   "cpu" [href="cpu.html"] | ||||
|   "crc" [href="crc.html"] | ||||
|   "CSOE" -> "util" | ||||
|   "CSOE" -> "console" | ||||
|   "CSOE" -> "isr_types" | ||||
|   "CSOE" -> "isrmanager" | ||||
|   "CSOE" -> "IDT" | ||||
|   "CSOE" [href="CSOE.html"] | ||||
|   "DBGE" -> "util" | ||||
|   "DBGE" -> "console" | ||||
|   "DBGE" -> "isr_types" | ||||
|   "DBGE" -> "isrmanager" | ||||
|   "DBGE" -> "IDT" | ||||
|   "DBGE" [href="DBGE.html"] | ||||
|   "DBZ" -> "util" | ||||
|   "DBZ" -> "console" | ||||
|   "DBZ" -> "isr_types" | ||||
|   "DBZ" -> "isrmanager" | ||||
|   "DBZ" -> "IDT" | ||||
|   "DBZ" [href="DBZ.html"] | ||||
|   "DFE" -> "util" | ||||
|   "DFE" -> "console" | ||||
|   "DFE" -> "isr_types" | ||||
|   "DFE" -> "isrmanager" | ||||
|   "DFE" -> "IDT" | ||||
|   "DFE" [href="DFE.html"] | ||||
|   "drivermanagement" -> "console" | ||||
|   "drivermanagement" -> "util" | ||||
|   "drivermanagement" -> "strings" | ||||
|   "drivermanagement" -> "lmemorymanager" | ||||
|   "drivermanagement" -> "terminal" | ||||
|   "drivermanagement" -> "tracer" | ||||
|   "drivermanagement" [href="drivermanagement.html"] | ||||
|   "drivertypes" [href="drivertypes.html"] | ||||
|   "E1000" -> "tracer" | ||||
|   "E1000" -> "console" | ||||
|   "E1000" -> "strings" | ||||
|   "E1000" -> "vmemorymanager" | ||||
|   "E1000" -> "lmemorymanager" | ||||
|   "E1000" -> "drivermanagement" | ||||
|   "E1000" -> "drivertypes" | ||||
|   "E1000" -> "util" | ||||
|   "E1000" -> "IDT" | ||||
|   "E1000" -> "PCI" | ||||
|   "E1000" -> "terminal" | ||||
|   "E1000" -> "net" | ||||
|   "E1000" -> "nettypes" | ||||
|   "E1000" -> "netutils" | ||||
|   "E1000" -> "isrmanager" | ||||
|   "E1000" [href="E1000.html"] | ||||
|   "EHCI" -> "tracer" | ||||
|   "EHCI" -> "Console" | ||||
|   "EHCI" -> "PCI" | ||||
|   "EHCI" -> "drivertypes" | ||||
|   "EHCI" -> "pmemorymanager" | ||||
|   "EHCI" -> "vmemorymanager" | ||||
|   "EHCI" -> "util" | ||||
|   "EHCI" -> "drivermanagement" | ||||
|   "EHCI" [href="EHCI.html"] | ||||
|   "eth2" -> "lmemorymanager" | ||||
|   "eth2" -> "util" | ||||
|   "eth2" -> "tracer" | ||||
|   "eth2" -> "nettypes" | ||||
|   "eth2" -> "netutils" | ||||
|   "eth2" -> "terminal" | ||||
|   "eth2" -> "net" | ||||
|   "eth2" -> "netlog" | ||||
|   "eth2" -> "console" | ||||
|   "eth2" -> "crc" | ||||
|   "eth2" [href="eth2.html"] | ||||
|   "faults" -> "ACE" | ||||
|   "faults" -> "BPE" | ||||
|   "faults" -> "BTSSE" | ||||
|   "faults" -> "CFE" | ||||
|   "faults" -> "CSOE" | ||||
|   "faults" -> "DBGE" | ||||
|   "faults" -> "DBZ" | ||||
|   "faults" -> "DFE" | ||||
|   "faults" -> "GPF" | ||||
|   "faults" -> "IDOE" | ||||
|   "faults" -> "IOPE" | ||||
|   "faults" -> "MCE" | ||||
|   "faults" -> "NCE" | ||||
|   "faults" -> "NMIE" | ||||
|   "faults" -> "OOBE" | ||||
|   "faults" -> "PF" | ||||
|   "faults" -> "SFE" | ||||
|   "faults" -> "SNPE" | ||||
|   "faults" -> "UIE" | ||||
|   "faults" [href="faults.html"] | ||||
|   "fonts" [href="fonts.html"] | ||||
|   "gdt" -> "console" | ||||
|   "gdt" [href="gdt.html"] | ||||
|   "GPF" -> "util" | ||||
|   "GPF" -> "console" | ||||
|   "GPF" -> "isr_types" | ||||
|   "GPF" -> "isrmanager" | ||||
|   "GPF" -> "IDT" | ||||
|   "GPF" [href="GPF.html"] | ||||
|   "icmp" -> "bios_data_area" | ||||
|   "icmp" -> "lmemorymanager" | ||||
|   "icmp" -> "net" | ||||
|   "icmp" -> "nettypes" | ||||
|   "icmp" -> "netutils" | ||||
|   "icmp" -> "ipv4" | ||||
|   "icmp" -> "console" | ||||
|   "icmp" -> "terminal" | ||||
|   "icmp" -> "arp" | ||||
|   "icmp" -> "util" | ||||
|   "icmp" [href="icmp.html"] | ||||
|   "IDOE" -> "util" | ||||
|   "IDOE" -> "console" | ||||
|   "IDOE" -> "isr_types" | ||||
|   "IDOE" -> "isrmanager" | ||||
|   "IDOE" -> "IDT" | ||||
|   "IDOE" [href="IDOE.html"] | ||||
|   "idt" -> "util" | ||||
|   "idt" -> "console" | ||||
|   "idt" [href="idt.html"] | ||||
|   "IOPE" -> "util" | ||||
|   "IOPE" -> "console" | ||||
|   "IOPE" -> "isr_types" | ||||
|   "IOPE" -> "isrmanager" | ||||
|   "IOPE" -> "IDT" | ||||
|   "IOPE" [href="IOPE.html"] | ||||
|   "ipv4" -> "tracer" | ||||
|   "ipv4" -> "lmemorymanager" | ||||
|   "ipv4" -> "util" | ||||
|   "ipv4" -> "console" | ||||
|   "ipv4" -> "terminal" | ||||
|   "ipv4" -> "strings" | ||||
|   "ipv4" -> "net" | ||||
|   "ipv4" -> "nettypes" | ||||
|   "ipv4" -> "netutils" | ||||
|   "ipv4" -> "netlog" | ||||
|   "ipv4" -> "lists" | ||||
|   "ipv4" -> "eth2" | ||||
|   "ipv4" [href="ipv4.html"] | ||||
|   "irq" -> "util" | ||||
|   "irq" -> "console" | ||||
|   "irq" [href="irq.html"] | ||||
|   "isr" -> "Console" | ||||
|   "isr" [href="isr.html"] | ||||
|   "isrmanager" -> "isr" | ||||
|   "isrmanager" -> "idt" | ||||
|   "isrmanager" -> "isr_types" | ||||
|   "isrmanager" -> "util" | ||||
|   "isrmanager" [href="isrmanager.html"] | ||||
|   "isr_types" [href="isr_types.html"] | ||||
|   "kernel" -> "multiboot" | ||||
|   "kernel" -> "bios_data_area" | ||||
|   "kernel" -> "util" | ||||
|   "kernel" -> "gdt" | ||||
|   "kernel" -> "idt" | ||||
|   "kernel" -> "isr" | ||||
|   "kernel" -> "irq" | ||||
|   "kernel" -> "tss" | ||||
|   "kernel" -> "TMR_0_ISR" | ||||
|   "kernel" -> "console" | ||||
|   "kernel" -> "keyboard" | ||||
|   "kernel" -> "mouse" | ||||
|   "kernel" -> "vmemorymanager" | ||||
|   "kernel" -> "pmemorymanager" | ||||
|   "kernel" -> "lmemorymanager" | ||||
|   "kernel" -> "tracer" | ||||
|   "kernel" -> "drivermanagement" | ||||
|   "kernel" -> "scheduler" | ||||
|   "kernel" -> "PCI" | ||||
|   "kernel" -> "Terminal" | ||||
|   "kernel" -> "strings" | ||||
|   "kernel" -> "USB" | ||||
|   "kernel" -> "testdriver" | ||||
|   "kernel" -> "E1000" | ||||
|   "kernel" -> "IDE" | ||||
|   "kernel" -> "storagemanagement" | ||||
|   "kernel" -> "lists" | ||||
|   "kernel" -> "net" | ||||
|   "kernel" -> "fat32" | ||||
|   "kernel" -> "isrmanager" | ||||
|   "kernel" -> "faults" | ||||
|   "kernel" -> "fonts" | ||||
|   "kernel" -> "RTC" | ||||
|   "kernel" -> "serial" | ||||
|   "kernel" -> "shell" | ||||
|   "kernel" -> "memview" | ||||
|   "kernel" -> "splash" | ||||
|   "kernel" -> "cpu" | ||||
|   "kernel" -> "themer" | ||||
|   "kernel" -> "netlog" | ||||
|   "kernel" -> "vmlog" | ||||
|   "kernel" -> "vm" | ||||
|   "kernel" -> "vmstate" | ||||
|   "kernel" [href="kernel.html"] | ||||
|   "keyboard" -> "console" | ||||
|   "keyboard" -> "util" | ||||
|   "keyboard" -> "PS2_KEYBOARD_ISR" | ||||
|   "keyboard" [href="keyboard.html"] | ||||
|   "lists" -> "console" | ||||
|   "lists" -> "lmemorymanager" | ||||
|   "lists" -> "util" | ||||
|   "lists" -> "strings" | ||||
|   "lists" -> "tracer" | ||||
|   "lists" [href="lists.html"] | ||||
|   "lmemorymanager" -> "util" | ||||
|   "lmemorymanager" -> "vmemorymanager" | ||||
|   "lmemorymanager" -> "pmemorymanager" | ||||
|   "lmemorymanager" -> "console" | ||||
|   "lmemorymanager" -> "tracer" | ||||
|   "lmemorymanager" [href="lmemorymanager.html"] | ||||
|   "MCE" -> "util" | ||||
|   "MCE" -> "console" | ||||
|   "MCE" -> "isr_types" | ||||
|   "MCE" -> "isrmanager" | ||||
|   "MCE" -> "IDT" | ||||
|   "MCE" [href="MCE.html"] | ||||
|   "memview" -> "console" | ||||
|   "memview" -> "terminal" | ||||
|   "memview" -> "keyboard" | ||||
|   "memview" -> "util" | ||||
|   "memview" -> "strings" | ||||
|   "memview" -> "tracer" | ||||
|   "memview" [href="memview.html"] | ||||
|   "mouse" -> "tracer" | ||||
|   "mouse" -> "console" | ||||
|   "mouse" -> "util" | ||||
|   "mouse" -> "lmemorymanager" | ||||
|   "mouse" -> "strings" | ||||
|   "mouse" -> "isrmanager" | ||||
|   "mouse" -> "drivermanagement" | ||||
|   "mouse" [href="mouse.html"] | ||||
|   "multiboot" [href="multiboot.html"] | ||||
|   "NCE" -> "util" | ||||
|   "NCE" -> "console" | ||||
|   "NCE" -> "isr_types" | ||||
|   "NCE" -> "isrmanager" | ||||
|   "NCE" -> "IDT" | ||||
|   "NCE" [href="NCE.html"] | ||||
|   "net" -> "tracer" | ||||
|   "net" -> "console" | ||||
|   "net" -> "nettypes" | ||||
|   "net" -> "netutils" | ||||
|   "net" -> "netlog" | ||||
|   "net" -> "RTC" | ||||
|   "net" [href="net.html"] | ||||
|   "netlog" -> "console" | ||||
|   "netlog" -> "terminal" | ||||
|   "netlog" -> "keyboard" | ||||
|   "netlog" -> "util" | ||||
|   "netlog" -> "strings" | ||||
|   "netlog" -> "tracer" | ||||
|   "netlog" [href="netlog.html"] | ||||
|   "nettypes" [href="nettypes.html"] | ||||
|   "netutils" -> "tracer" | ||||
|   "netutils" -> "util" | ||||
|   "netutils" -> "nettypes" | ||||
|   "netutils" -> "console" | ||||
|   "netutils" -> "lmemorymanager" | ||||
|   "netutils" -> "lists" | ||||
|   "netutils" -> "strings" | ||||
|   "netutils" [href="netutils.html"] | ||||
|   "NMIE" -> "util" | ||||
|   "NMIE" -> "console" | ||||
|   "NMIE" -> "isr_types" | ||||
|   "NMIE" -> "isrmanager" | ||||
|   "NMIE" -> "IDT" | ||||
|   "NMIE" [href="NMIE.html"] | ||||
|   "OHCI" -> "tracer" | ||||
|   "OHCI" -> "Console" | ||||
|   "OHCI" -> "PCI" | ||||
|   "OHCI" -> "drivertypes" | ||||
|   "OHCI" -> "pmemorymanager" | ||||
|   "OHCI" -> "vmemorymanager" | ||||
|   "OHCI" -> "util" | ||||
|   "OHCI" -> "drivermanagement" | ||||
|   "OHCI" [href="OHCI.html"] | ||||
|   "OOBE" -> "util" | ||||
|   "OOBE" -> "console" | ||||
|   "OOBE" -> "isr_types" | ||||
|   "OOBE" -> "isrmanager" | ||||
|   "OOBE" -> "IDT" | ||||
|   "OOBE" [href="OOBE.html"] | ||||
|   "PCI" -> "tracer" | ||||
|   "PCI" -> "util" | ||||
|   "PCI" -> "console" | ||||
|   "PCI" -> "drivertypes" | ||||
|   "PCI" -> "lmemorymanager" | ||||
|   "PCI" -> "vmemorymanager" | ||||
|   "PCI" -> "drivermanagement" | ||||
|   "PCI" [href="PCI.html"] | ||||
|   "PF" -> "util" | ||||
|   "PF" -> "console" | ||||
|   "PF" -> "isr_types" | ||||
|   "PF" -> "isrmanager" | ||||
|   "PF" -> "IDT" | ||||
|   "PF" [href="PF.html"] | ||||
|   "pmemorymanager" -> "util" | ||||
|   "pmemorymanager" -> "console" | ||||
|   "pmemorymanager" -> "multiboot" | ||||
|   "pmemorymanager" -> "tracer" | ||||
|   "pmemorymanager" [href="pmemorymanager.html"] | ||||
|   "processloader" [href="processloader.html"] | ||||
|   "PS2_KEYBOARD_ISR" -> "util" | ||||
|   "PS2_KEYBOARD_ISR" -> "console" | ||||
|   "PS2_KEYBOARD_ISR" -> "isr_types" | ||||
|   "PS2_KEYBOARD_ISR" -> "isrmanager" | ||||
|   "PS2_KEYBOARD_ISR" -> "IDT" | ||||
|   "PS2_KEYBOARD_ISR" [href="PS2_KEYBOARD_ISR.html"] | ||||
|   "RTC" -> "console" | ||||
|   "RTC" -> "isrmanager" | ||||
|   "RTC" -> "util" | ||||
|   "RTC" -> "TMR_0_ISR" | ||||
|   "RTC" [href="RTC.html"] | ||||
|   "scheduler" -> "console" | ||||
|   "scheduler" -> "TMR_0_ISR" | ||||
|   "scheduler" -> "lmemorymanager" | ||||
|   "scheduler" -> "terminal" | ||||
|   "scheduler" [href="scheduler.html"] | ||||
|   "serial" -> "util" | ||||
|   "serial" -> "isrmanager" | ||||
|   "serial" -> "strings" | ||||
|   "serial" [href="serial.html"] | ||||
|   "SFE" -> "util" | ||||
|   "SFE" -> "console" | ||||
|   "SFE" -> "isr_types" | ||||
|   "SFE" -> "isrmanager" | ||||
|   "SFE" -> "IDT" | ||||
|   "SFE" [href="SFE.html"] | ||||
|   "shell" -> "Console" | ||||
|   "shell" -> "RTC" | ||||
|   "shell" -> "terminal" | ||||
|   "shell" -> "strings" | ||||
|   "shell" -> "asuro" | ||||
|   "shell" -> "tracer" | ||||
|   "shell" [href="shell.html"] | ||||
|   "SNPE" -> "util" | ||||
|   "SNPE" -> "console" | ||||
|   "SNPE" -> "isr_types" | ||||
|   "SNPE" -> "isrmanager" | ||||
|   "SNPE" -> "IDT" | ||||
|   "SNPE" [href="SNPE.html"] | ||||
|   "splash" -> "console" | ||||
|   "splash" -> "keyboard" | ||||
|   "splash" -> "RTC" | ||||
|   "splash" [href="splash.html"] | ||||
|   "strings" -> "util" | ||||
|   "strings" -> "lmemorymanager" | ||||
|   "strings" [href="strings.html"] | ||||
|   "system" [href="system.html"] | ||||
|   "tcp" -> "nettypes" | ||||
|   "tcp" -> "netutils" | ||||
|   "tcp" -> "ipv4" | ||||
|   "tcp" [href="tcp.html"] | ||||
|   "terminal" -> "bios_data_area" | ||||
|   "terminal" -> "console" | ||||
|   "terminal" -> "keyboard" | ||||
|   "terminal" -> "util" | ||||
|   "terminal" -> "lmemorymanager" | ||||
|   "terminal" -> "strings" | ||||
|   "terminal" -> "tracer" | ||||
|   "terminal" -> "asuro" | ||||
|   "terminal" -> "serial" | ||||
|   "terminal" -> "netutils" | ||||
|   "terminal" -> "nettypes" | ||||
|   "terminal" [href="terminal.html"] | ||||
|   "testdriver" -> "tracer" | ||||
|   "testdriver" -> "console" | ||||
|   "testdriver" -> "drivermanagement" | ||||
|   "testdriver" [href="testdriver.html"] | ||||
|   "themer" -> "console" | ||||
|   "themer" -> "terminal" | ||||
|   "themer" -> "keyboard" | ||||
|   "themer" -> "shell" | ||||
|   "themer" -> "strings" | ||||
|   "themer" -> "tracer" | ||||
|   "themer" [href="themer.html"] | ||||
|   "TMR_0_ISR" -> "util" | ||||
|   "TMR_0_ISR" -> "console" | ||||
|   "TMR_0_ISR" -> "isr_types" | ||||
|   "TMR_0_ISR" -> "isrmanager" | ||||
|   "TMR_0_ISR" -> "IDT" | ||||
|   "TMR_0_ISR" [href="TMR_0_ISR.html"] | ||||
|   "TMR_1_ISR" -> "util" | ||||
|   "TMR_1_ISR" -> "console" | ||||
|   "TMR_1_ISR" -> "isr_types" | ||||
|   "TMR_1_ISR" -> "IDT" | ||||
|   "TMR_1_ISR" [href="TMR_1_ISR.html"] | ||||
|   "tracer" [href="tracer.html"] | ||||
|   "tss" -> "gdt" | ||||
|   "tss" -> "vmemorymanager" | ||||
|   "tss" -> "console" | ||||
|   "tss" [href="tss.html"] | ||||
|   "types" [href="types.html"] | ||||
|   "udp" -> "nettypes" | ||||
|   "udp" -> "netutils" | ||||
|   "udp" -> "ipv4" | ||||
|   "udp" [href="udp.html"] | ||||
|   "UHCI" -> "tracer" | ||||
|   "UHCI" -> "Console" | ||||
|   "UHCI" -> "PCI" | ||||
|   "UHCI" -> "drivertypes" | ||||
|   "UHCI" -> "pmemorymanager" | ||||
|   "UHCI" -> "vmemorymanager" | ||||
|   "UHCI" -> "util" | ||||
|   "UHCI" -> "drivermanagement" | ||||
|   "UHCI" [href="UHCI.html"] | ||||
|   "UIE" -> "util" | ||||
|   "UIE" -> "console" | ||||
|   "UIE" -> "isr_types" | ||||
|   "UIE" -> "isrmanager" | ||||
|   "UIE" -> "IDT" | ||||
|   "UIE" [href="UIE.html"] | ||||
|   "USB" -> "tracer" | ||||
|   "USB" -> "Console" | ||||
|   "USB" -> "PCI" | ||||
|   "USB" -> "drivertypes" | ||||
|   "USB" -> "pmemorymanager" | ||||
|   "USB" -> "vmemorymanager" | ||||
|   "USB" -> "util" | ||||
|   "USB" -> "drivermanagement" | ||||
|   "USB" -> "OHCI" | ||||
|   "USB" -> "UHCI" | ||||
|   "USB" -> "EHCI" | ||||
|   "USB" -> "XHCI" | ||||
|   "USB" [href="USB.html"] | ||||
|   "util" -> "bios_data_area" | ||||
|   "util" -> "tracer" | ||||
|   "util" [href="util.html"] | ||||
|   "vmemorymanager" -> "util" | ||||
|   "vmemorymanager" -> "pmemorymanager" | ||||
|   "vmemorymanager" -> "console" | ||||
|   "vmemorymanager" -> "tracer" | ||||
|   "vmemorymanager" [href="vmemorymanager.html"] | ||||
|   "vmlog" -> "console" | ||||
|   "vmlog" -> "terminal" | ||||
|   "vmlog" -> "keyboard" | ||||
|   "vmlog" -> "util" | ||||
|   "vmlog" -> "strings" | ||||
|   "vmlog" -> "tracer" | ||||
|   "vmlog" [href="vmlog.html"] | ||||
|   "vmstate" -> "console" | ||||
|   "vmstate" -> "terminal" | ||||
|   "vmstate" -> "keyboard" | ||||
|   "vmstate" -> "util" | ||||
|   "vmstate" -> "strings" | ||||
|   "vmstate" -> "tracer" | ||||
|   "vmstate" -> "vm_scheduler" | ||||
|   "vmstate" -> "vm_instance" | ||||
|   "vmstate" [href="vmstate.html"] | ||||
|   "XHCI" -> "tracer" | ||||
|   "XHCI" -> "Console" | ||||
|   "XHCI" -> "PCI" | ||||
|   "XHCI" -> "drivertypes" | ||||
|   "XHCI" -> "pmemorymanager" | ||||
|   "XHCI" -> "vmemorymanager" | ||||
|   "XHCI" -> "util" | ||||
|   "XHCI" -> "drivermanagement" | ||||
|   "XHCI" [href="XHCI.html"] | ||||
| } | ||||
							
								
								
									
										
											BIN
										
									
								
								doc/GVUses.png
									
									
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								doc/GVUses.png
									
									
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							| Before Width: | Height: | Size: 4.0 MiB | 
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: IDOE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit IDOE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault->IDO - Into Detected Overflow Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="IDOE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: IOPE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit IOPE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>IOPE</code> - Invalid OPCode Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="IOPE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/MCE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/MCE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: MCE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit MCE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>MCE</code> - Machine Check Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="MCE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/NCE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/NCE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: NCE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit NCE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>NCE</code> - No Coprocessor Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="NCE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: NMIE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit NMIE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>NMIE</code> - Non-Maskable Interrupt Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="NMIE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,247 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: OHCI: Packed Record TOHCI_MMR</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TOHCI_MMR"></span><h1 class="cio">Packed Record TOHCI_MMR</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="OHCI.html">OHCI</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TOHCI_MMR = packed record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcRevision">HcRevision</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcControl">HcControl</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcCommandStatus">HcCommandStatus</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcIntStatus">HcIntStatus</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcIntEnable">HcIntEnable</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcIntDisable">HcIntDisable</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcHCCA">HcHCCA</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcPeriodCurrentED">HcPeriodCurrentED</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcControlHeadED">HcControlHeadED</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcControlCurrentED">HcControlCurrentED</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcBulkHeadED">HcBulkHeadED</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcBulkCurrentED">HcBulkCurrentED</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcDoneHead">HcDoneHead</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcFmRemaining">HcFmRemaining</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcFmNumber">HcFmNumber</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcPeriodicStart">HcPeriodicStart</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcLSThreshold">HcLSThreshold</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcRhDescriptorA">HcRhDescriptorA</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcRhDescriptorB">HcRhDescriptorB</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.TOHCI_MMR.html#HcRhStatus">HcRhStatus</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcRevision"></span><code><b>HcRevision</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcControl"></span><code><b>HcControl</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcCommandStatus"></span><code><b>HcCommandStatus</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcIntStatus"></span><code><b>HcIntStatus</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcIntEnable"></span><code><b>HcIntEnable</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcIntDisable"></span><code><b>HcIntDisable</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcHCCA"></span><code><b>HcHCCA</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcPeriodCurrentED"></span><code><b>HcPeriodCurrentED</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcControlHeadED"></span><code><b>HcControlHeadED</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcControlCurrentED"></span><code><b>HcControlCurrentED</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcBulkHeadED"></span><code><b>HcBulkHeadED</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcBulkCurrentED"></span><code><b>HcBulkCurrentED</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcDoneHead"></span><code><b>HcDoneHead</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcFmRemaining"></span><code><b>HcFmRemaining</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcFmNumber"></span><code><b>HcFmNumber</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcPeriodicStart"></span><code><b>HcPeriodicStart</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcLSThreshold"></span><code><b>HcLSThreshold</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcRhDescriptorA"></span><code><b>HcRhDescriptorA</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcRhDescriptorB"></span><code><b>HcRhDescriptorB</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="HcRhStatus"></span><code><b>HcRhStatus</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,85 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: OHCI</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit OHCI</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Bus-><code>OHCI</code> - Open Host Controller Interface Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="console.html">Console</a></li><li><a  href="PCI.html">PCI</a></li><li><a  href="drivertypes.html">drivertypes</a></li><li><a  href="pmemorymanager.html">pmemorymanager</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Packed Record <a class="bold" href="OHCI.TOHCI_MMR.html"><code>TOHCI_MMR</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="OHCI.html#load">load</a></b> : boolean;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="OHCI.html#POHCI_MMR">POHCI_MMR</a></b> = ˆ<a  href="OHCI.TOHCI_MMR.html">TOHCI_MMR</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="load"></span><code>function <b>load</b> : boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="POHCI_MMR"></span><code><b>POHCI_MMR</b> = ˆ<a  href="OHCI.TOHCI_MMR.html">TOHCI_MMR</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: OOBE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit OOBE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>OOBE</code> - Out Of Bounds Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="OOBE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										289
									
								
								doc/PCI.html
									
									
									
									
									
								
							
							
						
						
									
										289
									
								
								doc/PCI.html
									
									
									
									
									
								
							| @@ -1,289 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: PCI</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit PCI</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Bus-><code>PCI</code> - Peripheral Component Interconnect Driver. | ||||
|  | ||||
| <p> </p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="drivertypes.html">drivertypes</a></li><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PCI.html#init">init</a></b>();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PCI.html#scanBus">scanBus</a></b>(bus : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="PCI.html#loadDeviceConfig">loadDeviceConfig</a></b>(bus : <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>) : boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>function <b><a  href="PCI.html#getDeviceInfo">getDeviceInfo</a></b>(class_code : <a  href="system.html#uInt8">uint8</a>; subclass_code : <a  href="system.html#uInt8">uint8</a>; prog_if : <a  href="system.html#uInt8">uint8</a>; var count : <a  href="system.html#uInt32">uint32</a>) : <a  href="drivertypes.html#TDeviceArray">TdeviceArray</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PCI.html#requestConfig">requestConfig</a></b>(bus : <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>; row : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PCI.html#writeConfig">writeConfig</a></b>(bus: <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>; row : <a  href="system.html#uInt8">uint8</a>; val : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PCI.html#setBusMaster">setBusMaster</a></b>(bus : <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>; master : boolean);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#TPCI_Device_Bridge">TPCI_Device_Bridge</a></b> = bitpacked record | ||||
|         device_id          : <a  href="system.html#uInt16">uint16</a>; | ||||
|         vendor_id          : <a  href="system.html#uInt16">uint16</a>; | ||||
|         status             : <a  href="system.html#uInt16">uint16</a>; | ||||
|         command            : <a  href="system.html#uInt16">uint16</a>; | ||||
|         class_code         : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         subclass_class     : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         prog_if            : <a  href="system.html#uInt8">uint8</a>; | ||||
|         revision_id        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         BIST               : <a  href="system.html#uInt8">uint8</a>; | ||||
|         header_type        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         latency_timer      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         cache_size         : <a  href="system.html#uInt8">uint8</a>; | ||||
|         address0           : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address1           : <a  href="system.html#uInt32">uint32</a>; | ||||
|         latency_timer2     : <a  href="system.html#uInt8">uint8</a>; | ||||
|         subordinate_bus    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         secondery_bus      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         primary_bus        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         secondery_status   : <a  href="system.html#uInt16">uint16</a>; | ||||
|         io_limit           : <a  href="system.html#uInt8">uint8</a>; | ||||
|         io_base            : <a  href="system.html#uInt8">uint8</a>; | ||||
|         memory_limit       : <a  href="system.html#uInt16">uint16</a>; | ||||
|         memory_base        : <a  href="system.html#uInt16">uint16</a>; | ||||
|         pref_memory_limit  : <a  href="system.html#uInt16">uint16</a>; | ||||
|         pref_memory_base   : <a  href="system.html#uInt16">uint16</a>; | ||||
|         pref_base_upper    : <a  href="system.html#uInt32">uint32</a>; | ||||
|         pref_limit_upper   : <a  href="system.html#uInt32">uint32</a>; | ||||
|         io_limit_upper     : <a  href="system.html#uInt16">uint16</a>; | ||||
|         io_base_upper      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         reserved           : <a  href="system.html#uInt16">uint16</a>; | ||||
|         reserved0          : <a  href="system.html#uInt8">uint8</a>; | ||||
|         capability_pointer : <a  href="system.html#uInt8">uint8</a>; | ||||
|         epx_rom_addr       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         bridge_control     : <a  href="system.html#uInt16">uint16</a>; | ||||
|         interrupt_pin      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         interrupt_line     : <a  href="system.html#uInt8">uint8</a>; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#PCI_PORT_CONF_ADDR">PCI_PORT_CONF_ADDR</a></b> = $CF8;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#PCI_PORT_CONF_DATA">PCI_PORT_CONF_DATA</a></b> = $CFC;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#devices">devices</a></b>: array[0..1024] of <a  href="drivertypes.html#TPCI_Device">TPCI_Device</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#busses">busses</a></b>: array[0..256] of <a  href="PCI.html#TPCI_Device_Bridge">TPCI_Device_Bridge</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#device_count">device_count</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#bus_count">bus_count</a></b>: <a  href="system.html#uInt8">uint8</a> = 1;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="PCI.html#get_device_count">get_device_count</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="scanBus"></span><code>procedure <b>scanBus</b>(bus : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="loadDeviceConfig"></span><code>function <b>loadDeviceConfig</b>(bus : <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>) : boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="getDeviceInfo"></span><code>function <b>getDeviceInfo</b>(class_code : <a  href="system.html#uInt8">uint8</a>; subclass_code : <a  href="system.html#uInt8">uint8</a>; prog_if : <a  href="system.html#uInt8">uint8</a>; var count : <a  href="system.html#uInt32">uint32</a>) : <a  href="drivertypes.html#TDeviceArray">TdeviceArray</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="requestConfig"></span><code>procedure <b>requestConfig</b>(bus : <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>; row : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
| <p> | ||||
| (Will in future)returns TPCI_DEVICE.vendor_id := 0xFFFF if no device found.</p> | ||||
| </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="writeConfig"></span><code>procedure <b>writeConfig</b>(bus: <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>; row : <a  href="system.html#uInt8">uint8</a>; val : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="setBusMaster"></span><code>procedure <b>setBusMaster</b>(bus : <a  href="system.html#uInt8">uint8</a>; slot : <a  href="system.html#uInt8">uint8</a>; func : <a  href="system.html#uInt8">uint8</a>; master : boolean);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TPCI_Device_Bridge"></span><code><b>TPCI_Device_Bridge</b> = bitpacked record | ||||
|         device_id          : <a  href="system.html#uInt16">uint16</a>; | ||||
|         vendor_id          : <a  href="system.html#uInt16">uint16</a>; | ||||
|         status             : <a  href="system.html#uInt16">uint16</a>; | ||||
|         command            : <a  href="system.html#uInt16">uint16</a>; | ||||
|         class_code         : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         subclass_class     : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         prog_if            : <a  href="system.html#uInt8">uint8</a>; | ||||
|         revision_id        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         BIST               : <a  href="system.html#uInt8">uint8</a>; | ||||
|         header_type        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         latency_timer      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         cache_size         : <a  href="system.html#uInt8">uint8</a>; | ||||
|         address0           : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address1           : <a  href="system.html#uInt32">uint32</a>; | ||||
|         latency_timer2     : <a  href="system.html#uInt8">uint8</a>; | ||||
|         subordinate_bus    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         secondery_bus      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         primary_bus        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         secondery_status   : <a  href="system.html#uInt16">uint16</a>; | ||||
|         io_limit           : <a  href="system.html#uInt8">uint8</a>; | ||||
|         io_base            : <a  href="system.html#uInt8">uint8</a>; | ||||
|         memory_limit       : <a  href="system.html#uInt16">uint16</a>; | ||||
|         memory_base        : <a  href="system.html#uInt16">uint16</a>; | ||||
|         pref_memory_limit  : <a  href="system.html#uInt16">uint16</a>; | ||||
|         pref_memory_base   : <a  href="system.html#uInt16">uint16</a>; | ||||
|         pref_base_upper    : <a  href="system.html#uInt32">uint32</a>; | ||||
|         pref_limit_upper   : <a  href="system.html#uInt32">uint32</a>; | ||||
|         io_limit_upper     : <a  href="system.html#uInt16">uint16</a>; | ||||
|         io_base_upper      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         reserved           : <a  href="system.html#uInt16">uint16</a>; | ||||
|         reserved0          : <a  href="system.html#uInt8">uint8</a>; | ||||
|         capability_pointer : <a  href="system.html#uInt8">uint8</a>; | ||||
|         epx_rom_addr       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         bridge_control     : <a  href="system.html#uInt16">uint16</a>; | ||||
|         interrupt_pin      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         interrupt_line     : <a  href="system.html#uInt8">uint8</a>; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Constants</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PCI_PORT_CONF_ADDR"></span><code><b>PCI_PORT_CONF_ADDR</b> = $CF8;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PCI_PORT_CONF_DATA"></span><code><b>PCI_PORT_CONF_DATA</b> = $CFC;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="devices"></span><code><b>devices</b>: array[0..1024] of <a  href="drivertypes.html#TPCI_Device">TPCI_Device</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="busses"></span><code><b>busses</b>: array[0..256] of <a  href="PCI.html#TPCI_Device_Bridge">TPCI_Device_Bridge</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="device_count"></span><code><b>device_count</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="bus_count"></span><code><b>bus_count</b>: <a  href="system.html#uInt8">uint8</a> = 1;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="get_device_count"></span><code><b>get_device_count</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Authors</h2> | ||||
| <ul class="authors"> | ||||
| <li>Aaron Hance <<a  href="mailto:ah@aaronhance.me">ah@aaronhance.me</a>></li> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/PF.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/PF.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: PF</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit PF</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>PF</code> - Page Fault. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PF.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,81 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: PS2_KEYBOARD_ISR</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit PS2_KEYBOARD_ISR</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->HID->PS2_KEYBAORD_ISR - PS2 <a class="normal" href="isr.html">ISR</a> <a class="normal" href="PS2_KEYBOARD_ISR.html#hook">Hook</a> & Driver. | ||||
|  | ||||
| <p> </p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PS2_KEYBOARD_ISR.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PS2_KEYBOARD_ISR.html#hook">hook</a></b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="PS2_KEYBOARD_ISR.html#unhook">unhook</a></b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="hook"></span><code>procedure <b>hook</b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="unhook"></span><code>procedure <b>unhook</b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Authors</h2> | ||||
| <ul class="authors"> | ||||
| <li>Aaron Hance <<a  href="mailto:ah@aaronhance.me">ah@aaronhance.me</a>></li> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,127 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: RTC: Record TDateTime</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TDateTime"></span><h1 class="cio">Record TDateTime</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="RTC.html">RTC</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TDateTime = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Seconds">Seconds</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Minutes">Minutes</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Hours">Hours</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Weekday">Weekday</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Day">Day</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Month">Month</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Year">Year</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="RTC.TDateTime.html#Century">Century</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Seconds"></span><code><b>Seconds</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Minutes"></span><code><b>Minutes</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Hours"></span><code><b>Hours</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Weekday"></span><code><b>Weekday</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Day"></span><code><b>Day</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Month"></span><code><b>Month</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Year"></span><code><b>Year</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Century"></span><code><b>Century</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										91
									
								
								doc/RTC.html
									
									
									
									
									
								
							
							
						
						
									
										91
									
								
								doc/RTC.html
									
									
									
									
									
								
							| @@ -1,91 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: RTC</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit RTC</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Timers-><code>RTC</code> - Real Time Clock Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="console.html">console</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="util.html">util</a></li><li><a  href="TMR_0_ISR.html">TMR_0_ISR</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="RTC.TDateTime.html"><code>TDateTime</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="RTC.html#init">init</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>function <b><a  href="RTC.html#getDateTime">getDateTime</a></b> : <a  href="RTC.TDateTime.html">TDateTime</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="RTC.html#weekdayToString">weekdayToString</a></b>(Weekday : <a  href="system.html#uInt8">uint8</a>) : <a  href="system.html#pchar">pchar</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="getDateTime"></span><code>function <b>getDateTime</b> : <a  href="RTC.TDateTime.html">TDateTime</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="weekdayToString"></span><code>function <b>weekdayToString</b>(Weekday : <a  href="system.html#uInt8">uint8</a>) : <a  href="system.html#pchar">pchar</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/SFE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/SFE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: SFE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit SFE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>SFE</code> - <a class="normal" href="util.html#stack">Stack</a> Fault Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="SFE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: SNPE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit SNPE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>SNPE</code> - Segment Not Present Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="SNPE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,80 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: TMR_0_ISR</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit TMR_0_ISR</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Timer-><code>TMR_0_ISR</code> - 1024hz Timer Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="TMR_0_ISR.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="TMR_0_ISR.html#hook">hook</a></b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="TMR_0_ISR.html#unhook">unhook</a></b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="hook"></span><code>procedure <b>hook</b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="unhook"></span><code>procedure <b>unhook</b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,80 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: TMR_1_ISR</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit TMR_1_ISR</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Timer-><code>TMR_1_ISR</code> - 1024/s Timer Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="TMR_1_ISR.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="TMR_1_ISR.html#hook">hook</a></b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="TMR_1_ISR.html#unhook">unhook</a></b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="hook"></span><code>procedure <b>hook</b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="unhook"></span><code>procedure <b>unhook</b>(hook_method : <a  href="system.html#uInt32">uint32</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: UHCI</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit UHCI</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Bus-><code>UHCI</code> - Universal Host Controller Interface Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="console.html">Console</a></li><li><a  href="PCI.html">PCI</a></li><li><a  href="drivertypes.html">drivertypes</a></li><li><a  href="pmemorymanager.html">pmemorymanager</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="UHCI.html#load">load</a></b> : boolean;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="load"></span><code>function <b>load</b> : boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/UIE.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/UIE.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: UIE</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit UIE</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Fault-><code>UIE</code> - Unknown Interrupt Exception. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="idt.html">IDT</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="UIE.html#register">register</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/USB.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/USB.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: USB</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit USB</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Bus-><code>USB</code> - Universal <a class="normal" href="serial.html">Serial</a> Bus Driver/Interface. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="console.html">Console</a></li><li><a  href="PCI.html">PCI</a></li><li><a  href="drivertypes.html">drivertypes</a></li><li><a  href="pmemorymanager.html">pmemorymanager</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li><li><a  href="OHCI.html">OHCI</a></li><li><a  href="UHCI.html">UHCI</a></li><li><a  href="EHCI.html">EHCI</a></li><li><a  href="XHCI.html">XHCI</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="USB.html#init">init</a></b>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: XHCI</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit XHCI</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Bus-><code>XHCI</code> - eXtensible Host Controller Interface Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="console.html">Console</a></li><li><a  href="PCI.html">PCI</a></li><li><a  href="drivertypes.html">drivertypes</a></li><li><a  href="pmemorymanager.html">pmemorymanager</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="XHCI.html#load">load</a></b> : boolean;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="load"></span><code>function <b>load</b> : boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,48 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Search Results</title> | ||||
|  | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
|  | ||||
|  | ||||
| <!-- Note that we use a local jquery copy (not from Google Hosted Libraries), to work offline --> | ||||
| <script type="text/javascript" src="tipuesearch/jquery.min.js"></script> | ||||
| <script type="text/javascript" src="tipuesearch/tipuesearch_data.js"></script> | ||||
| <script type="text/javascript" src="tipuesearch/tipuesearch_set.js"></script> | ||||
| <script type="text/javascript" src="tipuesearch/tipuesearch.js"></script> | ||||
|  | ||||
| </head> | ||||
| <body> | ||||
|  | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
|  | ||||
|  | ||||
| <h1>Search results</h1> | ||||
|  | ||||
| <div id="tipue_search_content"></div> | ||||
|  | ||||
| </td></tr></table> | ||||
|  | ||||
| </body> | ||||
| </html> | ||||
| @@ -1,67 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: arp: Record TARPCacheRecord</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TARPCacheRecord"></span><h1 class="cio">Record TARPCacheRecord</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="arp.html">arp</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TARPCacheRecord = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="arp.TARPCacheRecord.html#MAC">MAC</a></b>: <a  href="nettypes.html#TMACAddress">TMACAddress</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="arp.TARPCacheRecord.html#IP">IP</a></b>: <a  href="nettypes.html#TIPv4Address">TIPv4Address</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="MAC"></span><code><b>MAC</b>: <a  href="nettypes.html#TMACAddress">TMACAddress</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="IP"></span><code><b>IP</b>: <a  href="nettypes.html#TIPv4Address">TIPv4Address</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										145
									
								
								doc/arp.html
									
									
									
									
									
								
							
							
						
						
									
										145
									
								
								doc/arp.html
									
									
									
									
									
								
							| @@ -1,145 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: arp</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit arp</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver-><a class="normal" href="net.html">Net</a>->L3-><code>ARP</code> - Address Resolution Protocol Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="lists.html">lists</a></li><li><a  href="console.html">console</a></li><li><a  href="terminal.html">terminal</a></li><li><a  href="net.html">net</a></li><li><a  href="nettypes.html">nettypes</a></li><li><a  href="netutils.html">netutils</a></li><li><a  href="netlog.html">netlog</a></li><li><a  href="eth2.html">eth2</a></li><li><a  href="ipv4.html">ipv4</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="arp.TARPCacheRecord.html"><code>TARPCacheRecord</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="arp.html#register">register</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>function <b><a  href="arp.html#IPv4ToMAC">IPv4ToMAC</a></b>(ip : <a  href="system.html#PuInt8">puint8</a>) : <a  href="system.html#PuInt8">puint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="arp.html#MACToIIPv4">MACToIIPv4</a></b>(mac : <a  href="system.html#PuInt8">puint8</a>) : <a  href="system.html#PuInt8">puint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="arp.html#sendGratuitous">sendGratuitous</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="arp.html#sendRequest">sendRequest</a></b>(ip : <a  href="system.html#PuInt8">puint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="arp.html#send">send</a></b>(hType : <a  href="system.html#uInt16">uint16</a>; pType : <a  href="system.html#uInt16">uint16</a>; op : <a  href="system.html#uInt16">uint16</a>; p_context : <a  href="nettypes.html#PPacketContext">PPacketContext</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="arp.html#resolveIP">resolveIP</a></b>(ip : <a  href="system.html#PuInt8">puint8</a>) : <a  href="system.html#PuInt8">puint8</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="arp.html#PARPCacheRecord">PARPCacheRecord</a></b> = ˆ<a  href="arp.TARPCacheRecord.html">TARPCacheRecord</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="IPv4ToMAC"></span><code>function <b>IPv4ToMAC</b>(ip : <a  href="system.html#PuInt8">puint8</a>) : <a  href="system.html#PuInt8">puint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="MACToIIPv4"></span><code>function <b>MACToIIPv4</b>(mac : <a  href="system.html#PuInt8">puint8</a>) : <a  href="system.html#PuInt8">puint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="sendGratuitous"></span><code>procedure <b>sendGratuitous</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="sendRequest"></span><code>procedure <b>sendRequest</b>(ip : <a  href="system.html#PuInt8">puint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="send"></span><code>procedure <b>send</b>(hType : <a  href="system.html#uInt16">uint16</a>; pType : <a  href="system.html#uInt16">uint16</a>; op : <a  href="system.html#uInt16">uint16</a>; p_context : <a  href="nettypes.html#PPacketContext">PPacketContext</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="resolveIP"></span><code>function <b>resolveIP</b>(ip : <a  href="system.html#PuInt8">puint8</a>) : <a  href="system.html#PuInt8">puint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PARPCacheRecord"></span><code><b>PARPCacheRecord</b> = ˆ<a  href="arp.TARPCacheRecord.html">TARPCacheRecord</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										199
									
								
								doc/asuro.html
									
									
									
									
									
								
							
							
						
						
									
										199
									
								
								doc/asuro.html
									
									
									
									
									
								
							| @@ -1,199 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: asuro</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit asuro</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section">Functions and Procedures</div><div class="one_section">Types</div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Include-><code>Asuro</code> - Auto-Generated <a class="normal" href="asuro.html#VERSION">Version</a> & Compilation Information | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#VERSION">VERSION</a></b>       = '1.0.1-746ia';</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#VERSION_MAJOR">VERSION_MAJOR</a></b> = '1';</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#VERSION_MINOR">VERSION_MINOR</a></b> = '0';</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#VERSION_SUB">VERSION_SUB</a></b>   = '1';</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#REVISION">REVISION</a></b>      = '746';</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#RELEASE">RELEASE</a></b>       = 'ia';</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#LINE_COUNT">LINE_COUNT</a></b>    = 29505;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#FILE_COUNT">FILE_COUNT</a></b>    = 104;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#DRIVER_COUNT">DRIVER_COUNT</a></b>  = 32;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#FPC_VERSION">FPC_VERSION</a></b>   = '2.6.4';</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#NASM_VERSION">NASM_VERSION</a></b>  = '2.10.09';</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#MAKE_VERSION">MAKE_VERSION</a></b>  = '3.81';</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#COMPILE_DATE">COMPILE_DATE</a></b>  = '29/09/18';</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#COMPILE_TIME">COMPILE_TIME</a></b>  = '15:30:53';</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="asuro.html#CHECKSUM">CHECKSUM</a></b>      = 'ceb05d7417d4c62b74f7c3c4c164cb15';</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Constants</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="VERSION"></span><code><b>VERSION</b>       = '1.0.1-746ia';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="VERSION_MAJOR"></span><code><b>VERSION_MAJOR</b> = '1';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="VERSION_MINOR"></span><code><b>VERSION_MINOR</b> = '0';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="VERSION_SUB"></span><code><b>VERSION_SUB</b>   = '1';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="REVISION"></span><code><b>REVISION</b>      = '746';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="RELEASE"></span><code><b>RELEASE</b>       = 'ia';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="LINE_COUNT"></span><code><b>LINE_COUNT</b>    = 29505;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="FILE_COUNT"></span><code><b>FILE_COUNT</b>    = 104;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="DRIVER_COUNT"></span><code><b>DRIVER_COUNT</b>  = 32;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="FPC_VERSION"></span><code><b>FPC_VERSION</b>   = '2.6.4';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="NASM_VERSION"></span><code><b>NASM_VERSION</b>  = '2.10.09';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="MAKE_VERSION"></span><code><b>MAKE_VERSION</b>  = '3.81';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="COMPILE_DATE"></span><code><b>COMPILE_DATE</b>  = '29/09/18';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="COMPILE_TIME"></span><code><b>COMPILE_TIME</b>  = '15:30:53';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="CHECKSUM"></span><code><b>CHECKSUM</b>      = 'ceb05d7417d4c62b74f7c3c4c164cb15';</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Asuro Compilation Script</li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
										
											Binary file not shown.
										
									
								
							| Before Width: | Height: | Size: 141 B | 
| @@ -1,77 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: bios_data_area: Record TCounters</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TCounters"></span><h1 class="cio">Record TCounters</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="bios_data_area.html">bios_data_area</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TCounters = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.TCounters.html#c16">c16</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.TCounters.html#c32">c32</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.TCounters.html#c64">c64</a></b>: <a  href="system.html#uInt64">uint64</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="c16"></span><code><b>c16</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="c32"></span><code><b>c32</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="c64"></span><code><b>c64</b>: <a  href="system.html#uInt64">uint64</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,202 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: bios_data_area</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit bios_data_area</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Include-><code>BIOS_Data_Area</code> - Data Structures Controlled by the BIOS. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="bios_data_area.TCounters.html"><code>TCounters</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="bios_data_area.html#tick_update">tick_update</a></b>(data : <a  href="system.html#Void">void</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.html#TBDA">TBDA</a></b> = bitpacked record | ||||
|           <a  href="serial.html#COM1">COM1</a>            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           COM2            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           COM3            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           COM4            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           LPT1            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           LPT2            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           LPT3            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           EBDA            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Hardware_Flags  : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_Flags  : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_Buffer : ARRAY[0..31] OF <a  href="system.html#uInt8">uint8</a>; | ||||
|           Display_Mode    : <a  href="system.html#uInt8">uint8</a>; | ||||
|           BaseIO          : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Ticks           : <a  href="system.html#uInt16">uint16</a>; | ||||
|           HDD_Count       : <a  href="system.html#uInt8">uint8</a>; | ||||
|           Keyboard_Start  : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_End    : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_State  : <a  href="system.html#uInt8">uint8</a>; | ||||
|      end;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.html#PBDA">PBDA</a></b> = ˆ<a  href="bios_data_area.html#TBDA">TBDA</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.html#TMCFG">TMCFG</a></b> = bitpacked record | ||||
|         Signature        : Array[0..3] of Char; | ||||
|         Table_Length     : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Revision         : Byte; | ||||
|         Checksum         : Byte; | ||||
|         OEM_ID           : Array[0..5] of Byte; | ||||
|         OEM_Table_ID     : <a  href="system.html#uInt64">uint64</a>; | ||||
|         OEM_Revision     : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Creator_ID       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Creator_Revision : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Reserved         : <a  href="system.html#uInt64">uint64</a>; | ||||
|      end;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.html#PMCFG">PMCFG</a></b> = ˆ<a  href="bios_data_area.html#TMCFG">TMCFG</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.html#BDA">BDA</a></b> : <a  href="bios_data_area.html#PBDA">PBDA</a> = <a  href="bios_data_area.html#PBDA">PBDA</a>($C0000400);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="bios_data_area.html#Counters">Counters</a></b>: <a  href="bios_data_area.TCounters.html">TCounters</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="tick_update"></span><code>procedure <b>tick_update</b>(data : <a  href="system.html#Void">void</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TBDA"></span><code><b>TBDA</b> = bitpacked record | ||||
|           <a  href="serial.html#COM1">COM1</a>            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           COM2            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           COM3            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           COM4            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           LPT1            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           LPT2            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           LPT3            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           EBDA            : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Hardware_Flags  : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_Flags  : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_Buffer : ARRAY[0..31] OF <a  href="system.html#uInt8">uint8</a>; | ||||
|           Display_Mode    : <a  href="system.html#uInt8">uint8</a>; | ||||
|           BaseIO          : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Ticks           : <a  href="system.html#uInt16">uint16</a>; | ||||
|           HDD_Count       : <a  href="system.html#uInt8">uint8</a>; | ||||
|           Keyboard_Start  : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_End    : <a  href="system.html#uInt16">uint16</a>; | ||||
|           Keyboard_State  : <a  href="system.html#uInt8">uint8</a>; | ||||
|      end;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PBDA"></span><code><b>PBDA</b> = ˆ<a  href="bios_data_area.html#TBDA">TBDA</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TMCFG"></span><code><b>TMCFG</b> = bitpacked record | ||||
|         Signature        : Array[0..3] of Char; | ||||
|         Table_Length     : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Revision         : Byte; | ||||
|         Checksum         : Byte; | ||||
|         OEM_ID           : Array[0..5] of Byte; | ||||
|         OEM_Table_ID     : <a  href="system.html#uInt64">uint64</a>; | ||||
|         OEM_Revision     : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Creator_ID       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Creator_Revision : <a  href="system.html#uInt32">uint32</a>; | ||||
|         Reserved         : <a  href="system.html#uInt64">uint64</a>; | ||||
|      end;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PMCFG"></span><code><b>PMCFG</b> = ˆ<a  href="bios_data_area.html#TMCFG">TMCFG</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Constants</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="BDA"></span><code><b>BDA</b> : <a  href="bios_data_area.html#PBDA">PBDA</a> = <a  href="bios_data_area.html#PBDA">PBDA</a>($C0000400);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Counters"></span><code><b>Counters</b>: <a  href="bios_data_area.TCounters.html">TCounters</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										2164
									
								
								doc/console.html
									
									
									
									
									
								
							
							
						
						
									
										2164
									
								
								doc/console.html
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,43 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: contextswitcher</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit contextswitcher</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section">Functions and Procedures</div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <code>ContextSwitcher</code> - Switch Process Contexts when preempted. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,87 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: cpu: Record TCPUID</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TCPUID"></span><h1 class="cio">Record TCPUID</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="cpu.html">cpu</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TCPUID = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TCPUID.html#ClockSpeed">ClockSpeed</a></b>: <a  href="cpu.TClockSpeed.html">TClockSpeed</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TCPUID.html#Identifier">Identifier</a></b>: Array[0..12] of Char;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TCPUID.html#Capabilities0">Capabilities0</a></b>: <a  href="cpu.html#PCapabilities_Old">PCapabilities_Old</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TCPUID.html#Capabilities1">Capabilities1</a></b>: <a  href="cpu.html#PCapabilities_New">PCapabilities_New</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ClockSpeed"></span><code><b>ClockSpeed</b>: <a  href="cpu.TClockSpeed.html">TClockSpeed</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Identifier"></span><code><b>Identifier</b>: Array[0..12] of Char;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Capabilities0"></span><code><b>Capabilities0</b>: <a  href="cpu.html#PCapabilities_Old">PCapabilities_Old</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Capabilities1"></span><code><b>Capabilities1</b>: <a  href="cpu.html#PCapabilities_New">PCapabilities_New</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,87 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: cpu: Record TClockSpeed</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TClockSpeed"></span><h1 class="cio">Record TClockSpeed</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="cpu.html">cpu</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TClockSpeed = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TClockSpeed.html#Hz">Hz</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TClockSpeed.html#KHz">KHz</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TClockSpeed.html#MHz">MHz</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.TClockSpeed.html#GHz">GHz</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Hz"></span><code><b>Hz</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="KHz"></span><code><b>KHz</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="MHz"></span><code><b>MHz</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="GHz"></span><code><b>GHz</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										285
									
								
								doc/cpu.html
									
									
									
									
									
								
							
							
						
						
									
										285
									
								
								doc/cpu.html
									
									
									
									
									
								
							| @@ -1,285 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: cpu</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit cpu</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <code>CPU</code> - <code>CPU</code> Structures & Utility/Capabilities Functions. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="console.html">console</a></li><li><a  href="util.html">util</a></li><li><a  href="RTC.html">RTC</a></li><li><a  href="terminal.html">terminal</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="cpu.TClockSpeed.html"><code>TClockSpeed</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname">Record <a class="bold" href="cpu.TCPUID.html"><code>TCPUID</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="cpu.html#init">init</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#PCapabilities_Old">PCapabilities_Old</a></b> = ˆ<a  href="cpu.html#TCapabilities_Old">TCapabilities_Old</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#TCapabilities_Old">TCapabilities_Old</a></b> = bitpacked record | ||||
|         FPU   : Boolean;   | ||||
|         VME   : Boolean;   | ||||
|         DE    : Boolean;   | ||||
|         PSE   : Boolean;   | ||||
|         TSC   : Boolean;   | ||||
|         MSR   : Boolean;   | ||||
|         PAE   : Boolean;   | ||||
|         MCE   : Boolean;   | ||||
|         CX8   : Boolean;   | ||||
|         APIC  : Boolean; | ||||
|         RESV0 : Boolean;   | ||||
|         SEP   : Boolean;  | ||||
|         MTRR  : Boolean;  | ||||
|         PGE   : Boolean;  | ||||
|         MCA   : Boolean;  | ||||
|         CMOV  : Boolean;  | ||||
|         PAT   : Boolean;  | ||||
|         PSE36 : Boolean;  | ||||
|         PSN   : Boolean;  | ||||
|         CLF   : Boolean;  | ||||
|         RESV1 : Boolean; | ||||
|         DTES  : Boolean;   | ||||
|         ACPI  : Boolean;   | ||||
|         MMX   : Boolean;   | ||||
|         FXSR  : Boolean;   | ||||
|         SSE   : Boolean;   | ||||
|         SSE2  : Boolean;   | ||||
|         SS    : Boolean;   | ||||
|         HTT   : Boolean;   | ||||
|         TM1   : Boolean;   | ||||
|         IA64  : Boolean;  | ||||
|         PBE   : Boolean; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#PCapabilities_New">PCapabilities_New</a></b> = ˆ<a  href="cpu.html#TCapabilities_New">TCapabilities_New</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#TCapabilities_New">TCapabilities_New</a></b> = bitpacked record | ||||
|         SSE3         : Boolean;  | ||||
|         PCLMUL       : Boolean; | ||||
|         DTES64       : Boolean; | ||||
|         MONITOR      : Boolean;   | ||||
|         DS_CPL       : Boolean;   | ||||
|         VMX          : Boolean;   | ||||
|         SMX          : Boolean;   | ||||
|         EST          : Boolean;   | ||||
|         TM2          : Boolean;   | ||||
|         SSSE3        : Boolean;   | ||||
|         CID          : Boolean; | ||||
|         RESV0        : Boolean; | ||||
|         FMA          : Boolean; | ||||
|         CX16         : Boolean;  | ||||
|         ETPRD        : Boolean;  | ||||
|         PDCM         : Boolean; | ||||
|         RESV1        : Boolean;  | ||||
|         PCIDE        : Boolean;  | ||||
|         DCA          : Boolean;  | ||||
|         SSE4_1       : Boolean;  | ||||
|         SSE4_2       : Boolean;  | ||||
|         x2APIC       : Boolean;  | ||||
|         MOVBE        : Boolean;  | ||||
|         POPCNT       : Boolean;  | ||||
|         RESV2        : Boolean; | ||||
|         AES          : Boolean;  | ||||
|         XSAVE        : Boolean;  | ||||
|         OSXSAVE      : Boolean;  | ||||
|         AVX          : Boolean; | ||||
|         RESV3        : Boolean; | ||||
|         RESV4        : Boolean; | ||||
|         RESV5        : Boolean; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#CPUID">CPUID</a></b>: <a  href="cpu.TCPUID.html">TCPUID</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#CAP_OLD">CAP_OLD</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="cpu.html#CAP_NEW">CAP_NEW</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PCapabilities_Old"></span><code><b>PCapabilities_Old</b> = ˆ<a  href="cpu.html#TCapabilities_Old">TCapabilities_Old</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TCapabilities_Old"></span><code><b>TCapabilities_Old</b> = bitpacked record | ||||
|         FPU   : Boolean;   | ||||
|         VME   : Boolean;   | ||||
|         DE    : Boolean;   | ||||
|         PSE   : Boolean;   | ||||
|         TSC   : Boolean;   | ||||
|         MSR   : Boolean;   | ||||
|         PAE   : Boolean;   | ||||
|         MCE   : Boolean;   | ||||
|         CX8   : Boolean;   | ||||
|         APIC  : Boolean; | ||||
|         RESV0 : Boolean;   | ||||
|         SEP   : Boolean;  | ||||
|         MTRR  : Boolean;  | ||||
|         PGE   : Boolean;  | ||||
|         MCA   : Boolean;  | ||||
|         CMOV  : Boolean;  | ||||
|         PAT   : Boolean;  | ||||
|         PSE36 : Boolean;  | ||||
|         PSN   : Boolean;  | ||||
|         CLF   : Boolean;  | ||||
|         RESV1 : Boolean; | ||||
|         DTES  : Boolean;   | ||||
|         ACPI  : Boolean;   | ||||
|         MMX   : Boolean;   | ||||
|         FXSR  : Boolean;   | ||||
|         SSE   : Boolean;   | ||||
|         SSE2  : Boolean;   | ||||
|         SS    : Boolean;   | ||||
|         HTT   : Boolean;   | ||||
|         TM1   : Boolean;   | ||||
|         IA64  : Boolean;  | ||||
|         PBE   : Boolean; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PCapabilities_New"></span><code><b>PCapabilities_New</b> = ˆ<a  href="cpu.html#TCapabilities_New">TCapabilities_New</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TCapabilities_New"></span><code><b>TCapabilities_New</b> = bitpacked record | ||||
|         SSE3         : Boolean;  | ||||
|         PCLMUL       : Boolean; | ||||
|         DTES64       : Boolean; | ||||
|         MONITOR      : Boolean;   | ||||
|         DS_CPL       : Boolean;   | ||||
|         VMX          : Boolean;   | ||||
|         SMX          : Boolean;   | ||||
|         EST          : Boolean;   | ||||
|         TM2          : Boolean;   | ||||
|         SSSE3        : Boolean;   | ||||
|         CID          : Boolean; | ||||
|         RESV0        : Boolean; | ||||
|         FMA          : Boolean; | ||||
|         CX16         : Boolean;  | ||||
|         ETPRD        : Boolean;  | ||||
|         PDCM         : Boolean; | ||||
|         RESV1        : Boolean;  | ||||
|         PCIDE        : Boolean;  | ||||
|         DCA          : Boolean;  | ||||
|         SSE4_1       : Boolean;  | ||||
|         SSE4_2       : Boolean;  | ||||
|         x2APIC       : Boolean;  | ||||
|         MOVBE        : Boolean;  | ||||
|         POPCNT       : Boolean;  | ||||
|         RESV2        : Boolean; | ||||
|         AES          : Boolean;  | ||||
|         XSAVE        : Boolean;  | ||||
|         OSXSAVE      : Boolean;  | ||||
|         AVX          : Boolean; | ||||
|         RESV3        : Boolean; | ||||
|         RESV4        : Boolean; | ||||
|         RESV5        : Boolean; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="CPUID"></span><code><b>CPUID</b>: <a  href="cpu.TCPUID.html">TCPUID</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="CAP_OLD"></span><code><b>CAP_OLD</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="CAP_NEW"></span><code><b>CAP_NEW</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										59
									
								
								doc/crc.html
									
									
									
									
									
								
							
							
						
						
									
										59
									
								
								doc/crc.html
									
									
									
									
									
								
							| @@ -1,59 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: crc</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit crc</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Include-><code>CRC</code> - <a class="normal" href="crc.html#CRC32">CRC32</a> Implementation. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="crc.html#CRC32">CRC32</a></b>(p : <a  href="system.html#PuInt8">puint8</a>; size : <a  href="system.html#uInt32">uint32</a>) : <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="CRC32"></span><code>function <b>CRC32</b>(p : <a  href="system.html#PuInt8">puint8</a>; size : <a  href="system.html#uInt32">uint32</a>) : <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,67 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: drivermanagement: Record TDevEx</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TDevEx"></span><h1 class="cio">Record TDevEx</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="drivermanagement.html">drivermanagement</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TDevEx = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDevEx.html#idN">idN</a></b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDevEx.html#ex">ex</a></b>: <a  href="drivermanagement.html#PDevEx">PDevEx</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="idN"></span><code><b>idN</b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ex"></span><code><b>ex</b>: <a  href="drivermanagement.html#PDevEx">PDevEx</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,117 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: drivermanagement: Record TDeviceIdentifier</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TDeviceIdentifier"></span><h1 class="cio">Record TDeviceIdentifier</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="drivermanagement.html">drivermanagement</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TDeviceIdentifier = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#Bus">Bus</a></b>: <a  href="drivermanagement.html#TBusIdentifier">TBusIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#id0">id0</a></b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#id1">id1</a></b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#id2">id2</a></b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#id3">id3</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#id4">id4</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceIdentifier.html#ex">ex</a></b>: <a  href="drivermanagement.html#PDevEx">PDevEx</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Bus"></span><code><b>Bus</b>: <a  href="drivermanagement.html#TBusIdentifier">TBusIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="id0"></span><code><b>id0</b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="id1"></span><code><b>id1</b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="id2"></span><code><b>id2</b>: <a  href="system.html#uInt32">uInt32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="id3"></span><code><b>id3</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="id4"></span><code><b>id4</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ex"></span><code><b>ex</b>: <a  href="drivermanagement.html#PDevEx">PDevEx</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,97 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: drivermanagement: Record TDeviceRegistration</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TDeviceRegistration"></span><h1 class="cio">Record TDeviceRegistration</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="drivermanagement.html">drivermanagement</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TDeviceRegistration = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceRegistration.html#Device_Name">Device_Name</a></b>: <a  href="system.html#pchar">PChar</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceRegistration.html#Identifier">Identifier</a></b>: <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceRegistration.html#Driver_Loaded">Driver_Loaded</a></b>: Boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceRegistration.html#Driver">Driver</a></b>: <a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDeviceRegistration.html#Next">Next</a></b>: <a  href="drivermanagement.html#PDeviceRegistration">PDeviceRegistration</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Device_Name"></span><code><b>Device_Name</b>: <a  href="system.html#pchar">PChar</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Identifier"></span><code><b>Identifier</b>: <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Driver_Loaded"></span><code><b>Driver_Loaded</b>: Boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Driver"></span><code><b>Driver</b>: <a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Next"></span><code><b>Next</b>: <a  href="drivermanagement.html#PDeviceRegistration">PDeviceRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,97 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: drivermanagement: Record TDriverRegistration</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TDriverRegistration"></span><h1 class="cio">Record TDriverRegistration</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="drivermanagement.html">drivermanagement</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TDriverRegistration = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDriverRegistration.html#Driver_Name">Driver_Name</a></b>: <a  href="system.html#pchar">PChar</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDriverRegistration.html#Identifier">Identifier</a></b>: <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDriverRegistration.html#Driver_Load">Driver_Load</a></b>: <a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDriverRegistration.html#Loaded">Loaded</a></b>: Boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.TDriverRegistration.html#Next">Next</a></b>: <a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Driver_Name"></span><code><b>Driver_Name</b>: <a  href="system.html#pchar">PChar</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Identifier"></span><code><b>Identifier</b>: <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Driver_Load"></span><code><b>Driver_Load</b>: <a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Loaded"></span><code><b>Loaded</b>: Boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Next"></span><code><b>Next</b>: <a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,230 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: drivermanagement</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit drivermanagement</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <code>DriverManagement</code> - Driver Initialization & Management Interface. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="console.html">console</a></li><li><a  href="util.html">util</a></li><li><a  href="strings.html">strings</a></li><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="terminal.html">terminal</a></li><li><a  href="tracer.html">tracer</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="drivermanagement.TDevEx.html"><code>TDevEx</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname">Record <a class="bold" href="drivermanagement.TDeviceIdentifier.html"><code>TDeviceIdentifier</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="drivermanagement.TDriverRegistration.html"><code>TDriverRegistration</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname">Record <a class="bold" href="drivermanagement.TDeviceRegistration.html"><code>TDeviceRegistration</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="drivermanagement.html#init">init</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="drivermanagement.html#register_driver">register_driver</a></b>(Driver_Name : <a  href="system.html#pchar">PChar</a>; DeviceID : <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>; Load_Callback : <a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="drivermanagement.html#register_driver_ex">register_driver_ex</a></b>(Driver_Name : <a  href="system.html#pchar">PChar</a>; DeviceID : <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>; Load_Callback : <a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a>; force_load : boolean);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="drivermanagement.html#register_device">register_device</a></b>(Device_Name : <a  href="system.html#pchar">PChar</a>; DeviceID : <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>; ptr : <a  href="system.html#Void">void</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#PDevEx">PDevEx</a></b> = ˆ<a  href="drivermanagement.TDevEx.html">TDevEx</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#TBusIdentifier">TBusIdentifier</a></b> = (...);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a></b> = ˆ<a  href="drivermanagement.TDeviceIdentifier.html">TDeviceIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a></b> = function(ptr : <a  href="system.html#Void">void</a>) : boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a></b> = ˆ<a  href="drivermanagement.TDriverRegistration.html">TDriverRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#PDeviceRegistration">PDeviceRegistration</a></b> = ˆ<a  href="drivermanagement.TDeviceRegistration.html">TDeviceRegistration</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#idANY">idANY</a></b> = $FFFFFFFF;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#Root">Root</a></b>: <a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a> = nil;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivermanagement.html#Dev">Dev</a></b>: <a  href="drivermanagement.html#PDeviceRegistration">PDeviceRegistration</a> = nil;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register_driver"></span><code>procedure <b>register_driver</b>(Driver_Name : <a  href="system.html#pchar">PChar</a>; DeviceID : <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>; Load_Callback : <a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register_driver_ex"></span><code>procedure <b>register_driver_ex</b>(Driver_Name : <a  href="system.html#pchar">PChar</a>; DeviceID : <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>; Load_Callback : <a  href="drivermanagement.html#TDriverLoadCallback">TDriverLoadCallback</a>; force_load : boolean);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register_device"></span><code>procedure <b>register_device</b>(Device_Name : <a  href="system.html#pchar">PChar</a>; DeviceID : <a  href="drivermanagement.html#PDeviceIdentifier">PDeviceIdentifier</a>; ptr : <a  href="system.html#Void">void</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PDevEx"></span><code><b>PDevEx</b> = ˆ<a  href="drivermanagement.TDevEx.html">TDevEx</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TBusIdentifier"></span><code><b>TBusIdentifier</b> = (...);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  <h6 class="description_section">Values</h6> | ||||
| <ul> | ||||
| <li> | ||||
| <span id="biUnknown">biUnknown</span></li> | ||||
| <li> | ||||
| <span id="biPCI">biPCI</span></li> | ||||
| <li> | ||||
| <span id="biUSB">biUSB</span></li> | ||||
| <li> | ||||
| <span id="bii2c">bii2c</span></li> | ||||
| <li> | ||||
| <span id="biPCIe">biPCIe</span></li> | ||||
| <li> | ||||
| <span id="biANY">biANY</span></li> | ||||
| </ul> | ||||
| </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PDeviceIdentifier"></span><code><b>PDeviceIdentifier</b> = ˆ<a  href="drivermanagement.TDeviceIdentifier.html">TDeviceIdentifier</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TDriverLoadCallback"></span><code><b>TDriverLoadCallback</b> = function(ptr : <a  href="system.html#Void">void</a>) : boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PDriverRegistration"></span><code><b>PDriverRegistration</b> = ˆ<a  href="drivermanagement.TDriverRegistration.html">TDriverRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PDeviceRegistration"></span><code><b>PDeviceRegistration</b> = ˆ<a  href="drivermanagement.TDeviceRegistration.html">TDeviceRegistration</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Constants</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="idANY"></span><code><b>idANY</b> = $FFFFFFFF;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Root"></span><code><b>Root</b>: <a  href="drivermanagement.html#PDriverRegistration">PDriverRegistration</a> = nil;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Dev"></span><code><b>Dev</b>: <a  href="drivermanagement.html#PDeviceRegistration">PDeviceRegistration</a> = nil;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,147 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: drivertypes</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit drivertypes</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section">Functions and Procedures</div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->Include-><code>DriverTypes</code> - Structs & Data Shared Across Drivers. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivertypes.html#PPCI_Device">PPCI_Device</a></b> = ˆ<a  href="drivertypes.html#TPCI_Device">TPCI_Device</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="drivertypes.html#TPCI_Device">TPCI_Device</a></b> = bitpacked record | ||||
|         bus                : <a  href="system.html#uInt8">uint8</a>; | ||||
|         slot               : <a  href="system.html#uInt8">uint8</a>; | ||||
|         func               : <a  href="system.html#uInt8">uint8</a>; | ||||
|         device_id      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         vendor_id      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         status         : <a  href="system.html#uInt16">uint16</a>; | ||||
|         command        : <a  href="system.html#uInt16">uint16</a>; | ||||
|         class_code     : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         subclass_class : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         prog_if        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         revision_id    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         BIST           : <a  href="system.html#uInt8">uint8</a>; | ||||
|         header_type    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         latency_timer  : <a  href="system.html#uInt8">uint8</a>; | ||||
|         cache_size     : <a  href="system.html#uInt8">uint8</a>; | ||||
|         address0       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address1       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address2       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address3       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address4       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address5       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         CIS_pointer    : <a  href="system.html#uInt32">uint32</a>; | ||||
|         subsystem_id   : <a  href="system.html#uInt16">uint16</a>; | ||||
|         subsystem_vid  : <a  href="system.html#uInt16">uint16</a>; | ||||
|         exp_rom_addr   : <a  href="system.html#uInt32">uint32</a>; | ||||
|         reserved0      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         reserved1      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         capabilities   : <a  href="system.html#uInt8">uint8</a>; | ||||
|         reserved2      : <a  href="system.html#uInt32">uint32</a>; | ||||
|         max_latency    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         min_grant      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         interrupt_pin  : <a  href="system.html#uInt8">uint8</a>; | ||||
|         interrupt_line : <a  href="system.html#uInt8">uint8</a>; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="drivertypes.html#TDeviceArray">TDeviceArray</a></b> = array[0..31] of <a  href="drivertypes.html#TPCI_Device">TPCI_Device</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PPCI_Device"></span><code><b>PPCI_Device</b> = ˆ<a  href="drivertypes.html#TPCI_Device">TPCI_Device</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TPCI_Device"></span><code><b>TPCI_Device</b> = bitpacked record | ||||
|         bus                : <a  href="system.html#uInt8">uint8</a>; | ||||
|         slot               : <a  href="system.html#uInt8">uint8</a>; | ||||
|         func               : <a  href="system.html#uInt8">uint8</a>; | ||||
|         device_id      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         vendor_id      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         status         : <a  href="system.html#uInt16">uint16</a>; | ||||
|         command        : <a  href="system.html#uInt16">uint16</a>; | ||||
|         class_code     : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         subclass_class : <a  href="system.html#uInt8">uint8</a>;  | ||||
|         prog_if        : <a  href="system.html#uInt8">uint8</a>; | ||||
|         revision_id    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         BIST           : <a  href="system.html#uInt8">uint8</a>; | ||||
|         header_type    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         latency_timer  : <a  href="system.html#uInt8">uint8</a>; | ||||
|         cache_size     : <a  href="system.html#uInt8">uint8</a>; | ||||
|         address0       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address1       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address2       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address3       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address4       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         address5       : <a  href="system.html#uInt32">uint32</a>; | ||||
|         CIS_pointer    : <a  href="system.html#uInt32">uint32</a>; | ||||
|         subsystem_id   : <a  href="system.html#uInt16">uint16</a>; | ||||
|         subsystem_vid  : <a  href="system.html#uInt16">uint16</a>; | ||||
|         exp_rom_addr   : <a  href="system.html#uInt32">uint32</a>; | ||||
|         reserved0      : <a  href="system.html#uInt16">uint16</a>; | ||||
|         reserved1      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         capabilities   : <a  href="system.html#uInt8">uint8</a>; | ||||
|         reserved2      : <a  href="system.html#uInt32">uint32</a>; | ||||
|         max_latency    : <a  href="system.html#uInt8">uint8</a>; | ||||
|         min_grant      : <a  href="system.html#uInt8">uint8</a>; | ||||
|         interrupt_pin  : <a  href="system.html#uInt8">uint8</a>; | ||||
|         interrupt_line : <a  href="system.html#uInt8">uint8</a>; | ||||
|     end;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TDeviceArray"></span><code><b>TDeviceArray</b> = array[0..31] of <a  href="drivertypes.html#TPCI_Device">TPCI_Device</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Aaron Hance <<a  href="mailto:ah@aaronhance.me">ah@aaronhance.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,90 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: eth2</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit eth2</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver-><a class="normal" href="net.html">Net</a>->L2-><code>Eth2</code> - Ethernet Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="tracer.html">tracer</a></li><li><a  href="nettypes.html">nettypes</a></li><li><a  href="netutils.html">netutils</a></li><li><a  href="terminal.html">terminal</a></li><li><a  href="net.html">net</a></li><li><a  href="netlog.html">netlog</a></li><li><a  href="console.html">console</a></li><li><a  href="crc.html">crc</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="eth2.html#send">send</a></b>(p_data : <a  href="system.html#Void">void</a>; p_len : <a  href="system.html#uInt16">uint16</a>; eth_type : <a  href="system.html#uInt16">uint16</a>; p_context : <a  href="nettypes.html#PPacketContext">PPacketContext</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="eth2.html#registerType">registerType</a></b>(eType : <a  href="system.html#uInt16">uint16</a>; RecvCB : <a  href="nettypes.html#TRecvCallback">TRecvCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="eth2.html#registerTypePromisc">registerTypePromisc</a></b>(eType : <a  href="system.html#uInt16">uint16</a>; RecvCB : <a  href="nettypes.html#TRecvCallback">TRecvCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="eth2.html#register">register</a></b>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="send"></span><code>procedure <b>send</b>(p_data : <a  href="system.html#Void">void</a>; p_len : <a  href="system.html#uInt16">uint16</a>; eth_type : <a  href="system.html#uInt16">uint16</a>; p_context : <a  href="nettypes.html#PPacketContext">PPacketContext</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="registerType"></span><code>procedure <b>registerType</b>(eType : <a  href="system.html#uInt16">uint16</a>; RecvCB : <a  href="nettypes.html#TRecvCallback">TRecvCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="registerTypePromisc"></span><code>procedure <b>registerTypePromisc</b>(eType : <a  href="system.html#uInt16">uint16</a>; RecvCB : <a  href="nettypes.html#TRecvCallback">TRecvCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: faults</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit faults</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <code>Faults</code> - Fault Registration & Detouring. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="ACE.html">ACE</a></li><li><a  href="BPE.html">BPE</a></li><li><a  href="BTSSE.html">BTSSE</a></li><li><a  href="CFE.html">CFE</a></li><li><a  href="CSOE.html">CSOE</a></li><li><a  href="DBGE.html">DBGE</a></li><li><a  href="DBZ.html">DBZ</a></li><li><a  href="DFE.html">DFE</a></li><li><a  href="GPF.html">GPF</a></li><li><a  href="IDOE.html">IDOE</a></li><li><a  href="IOPE.html">IOPE</a></li><li><a  href="MCE.html">MCE</a></li><li><a  href="NCE.html">NCE</a></li><li><a  href="NMIE.html">NMIE</a></li><li><a  href="OOBE.html">OOBE</a></li><li><a  href="PF.html">PF</a></li><li><a  href="SFE.html">SFE</a></li><li><a  href="SNPE.html">SNPE</a></li><li><a  href="UIE.html">UIE</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="faults.html#init">init</a></b>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										16461
									
								
								doc/fonts.html
									
									
									
									
									
								
							
							
						
						
									
										16461
									
								
								doc/fonts.html
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -1,107 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: gdt: Packed Record TGDT_Entry</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TGDT_Entry"></span><h1 class="cio">Packed Record TGDT_Entry</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="gdt.html">gdt</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TGDT_Entry = packed record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Entry.html#limit_low">limit_low</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Entry.html#base_low">base_low</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Entry.html#base_middle">base_middle</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Entry.html#access">access</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Entry.html#granularity">granularity</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Entry.html#base_high">base_high</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="limit_low"></span><code><b>limit_low</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base_low"></span><code><b>base_low</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base_middle"></span><code><b>base_middle</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="access"></span><code><b>access</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="granularity"></span><code><b>granularity</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base_high"></span><code><b>base_high</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,67 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: gdt: Packed Record TGDT_Pointer</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TGDT_Pointer"></span><h1 class="cio">Packed Record TGDT_Pointer</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="gdt.html">gdt</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TGDT_Pointer = packed record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Pointer.html#limit">limit</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.TGDT_Pointer.html#base">base</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="limit"></span><code><b>limit</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base"></span><code><b>base</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										143
									
								
								doc/gdt.html
									
									
									
									
									
								
							
							
						
						
									
										143
									
								
								doc/gdt.html
									
									
									
									
									
								
							| @@ -1,143 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: gdt</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit gdt</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Global Descriptor Table - Data Structures & Interface. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="console.html">console</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Packed Record <a class="bold" href="gdt.TGDT_Entry.html"><code>TGDT_Entry</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname">Packed Record <a class="bold" href="gdt.TGDT_Pointer.html"><code>TGDT_Pointer</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="gdt.html#init">init</a></b>();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="gdt.html#set_gate">set_gate</a></b>(Gate_Number : <a  href="system.html#uInt32">uint32</a>; Base : <a  href="system.html#uInt32">uint32</a>; Limit : <a  href="system.html#uInt32">uint32</a>; Access : <a  href="system.html#uInt8">uint8</a>; Granularity : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="gdt.html#flush">flush</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="gdt.html#reload">reload</a></b>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.html#PGDT_Entry">PGDT_Entry</a></b> = ˆ<a  href="gdt.TGDT_Entry.html">TGDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.html#gdt_entries">gdt_entries</a></b>: array[0..1023] of <a  href="gdt.TGDT_Entry.html">TGDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="gdt.html#gdt_pointer">gdt_pointer</a></b>: <a  href="gdt.TGDT_Pointer.html">TGDT_Pointer</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="set_gate"></span><code>procedure <b>set_gate</b>(Gate_Number : <a  href="system.html#uInt32">uint32</a>; Base : <a  href="system.html#uInt32">uint32</a>; Limit : <a  href="system.html#uInt32">uint32</a>; Access : <a  href="system.html#uInt8">uint8</a>; Granularity : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="flush"></span><code>procedure <b>flush</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="reload"></span><code>procedure <b>reload</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PGDT_Entry"></span><code><b>PGDT_Entry</b> = ˆ<a  href="gdt.TGDT_Entry.html">TGDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="gdt_entries"></span><code><b>gdt_entries</b>: array[0..1023] of <a  href="gdt.TGDT_Entry.html">TGDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="gdt_pointer"></span><code><b>gdt_pointer</b>: <a  href="gdt.TGDT_Pointer.html">TGDT_Pointer</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,77 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: icmp: Record TARPHandler</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TARPHandler"></span><h1 class="cio">Record TARPHandler</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="icmp.html">icmp</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TARPHandler = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="icmp.TARPHandler.html#Active">Active</a></b>: Boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="icmp.TARPHandler.html#OnReply">OnReply</a></b>: <a  href="icmp.html#TARPReplyCallback">TARPReplyCallback</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="icmp.TARPHandler.html#OnError">OnError</a></b>: <a  href="icmp.html#TARPErrorCallback">TARPErrorCallback</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Active"></span><code><b>Active</b>: Boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="OnReply"></span><code><b>OnReply</b>: <a  href="icmp.html#TARPReplyCallback">TARPReplyCallback</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="OnError"></span><code><b>OnError</b>: <a  href="icmp.html#TARPErrorCallback">TARPErrorCallback</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										146
									
								
								doc/icmp.html
									
									
									
									
									
								
							
							
						
						
									
										146
									
								
								doc/icmp.html
									
									
									
									
									
								
							| @@ -1,146 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: icmp</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit icmp</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver-><a class="normal" href="net.html">Net</a>->L4-><code>ICMP</code> - Internet Control Message Protocol Driver, | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="bios_data_area.html">bios_data_area</a></li><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="net.html">net</a></li><li><a  href="nettypes.html">nettypes</a></li><li><a  href="netutils.html">netutils</a></li><li><a  href="ipv4.html">ipv4</a></li><li><a  href="console.html">console</a></li><li><a  href="terminal.html">terminal</a></li><li><a  href="arp.html">arp</a></li><li><a  href="util.html">util</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="icmp.TARPHandler.html"><code>TARPHandler</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="icmp.html#register">register</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="icmp.html#sendICMPRequest">sendICMPRequest</a></b>(ip : <a  href="system.html#PuInt8">puint8</a>; Sequence : <a  href="system.html#uInt16">uint16</a>; TTL : <a  href="system.html#uInt8">uint8</a>; OnRep : <a  href="icmp.html#TARPReplyCallback">TARPReplyCallback</a>; OnErr : <a  href="icmp.html#TARPErrorCallback">TARPErrorCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="icmp.html#ping_err">ping_err</a></b>(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>; Reason : <a  href="icmp.html#TARPErrorCode">TARPErrorCode</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="icmp.html#ping_rep">ping_rep</a></b>(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="icmp.html#TARPErrorCode">TARPErrorCode</a></b> = (...);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="icmp.html#TARPReplyCallback">TARPReplyCallback</a></b> = procedure(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="icmp.html#TARPErrorCallback">TARPErrorCallback</a></b> = procedure(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>; Reason : <a  href="icmp.html#TARPErrorCode">TARPErrorCode</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="sendICMPRequest"></span><code>procedure <b>sendICMPRequest</b>(ip : <a  href="system.html#PuInt8">puint8</a>; Sequence : <a  href="system.html#uInt16">uint16</a>; TTL : <a  href="system.html#uInt8">uint8</a>; OnRep : <a  href="icmp.html#TARPReplyCallback">TARPReplyCallback</a>; OnErr : <a  href="icmp.html#TARPErrorCallback">TARPErrorCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ping_err"></span><code>procedure <b>ping_err</b>(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>; Reason : <a  href="icmp.html#TARPErrorCode">TARPErrorCode</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ping_rep"></span><code>procedure <b>ping_rep</b>(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TARPErrorCode"></span><code><b>TARPErrorCode</b> = (...);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  <h6 class="description_section">Values</h6> | ||||
| <ul> | ||||
| <li> | ||||
| <span id="aecFailedToResolveHost">aecFailedToResolveHost</span></li> | ||||
| <li> | ||||
| <span id="aecNoRouteToHost">aecNoRouteToHost</span></li> | ||||
| <li> | ||||
| <span id="aecTimeout">aecTimeout</span></li> | ||||
| <li> | ||||
| <span id="aecTTLExpired">aecTTLExpired</span></li> | ||||
| </ul> | ||||
| </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TARPReplyCallback"></span><code><b>TARPReplyCallback</b> = procedure(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TARPErrorCallback"></span><code><b>TARPErrorCallback</b> = procedure(hdr : <a  href="nettypes.html#PICMPHeader">PICMPHeader</a>; Reason : <a  href="icmp.html#TARPErrorCode">TARPErrorCode</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,97 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: idt: Packed Record TIDT_Entry</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TIDT_Entry"></span><h1 class="cio">Packed Record TIDT_Entry</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="idt.html">idt</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TIDT_Entry = packed record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Entry.html#base_low">base_low</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Entry.html#selector">selector</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Entry.html#always_0">always_0</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Entry.html#flags">flags</a></b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Entry.html#base_high">base_high</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base_low"></span><code><b>base_low</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="selector"></span><code><b>selector</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="always_0"></span><code><b>always_0</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="flags"></span><code><b>flags</b>: <a  href="system.html#uInt8">uint8</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base_high"></span><code><b>base_high</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,67 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: idt: Packed Record TIDT_Pointer</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TIDT_Pointer"></span><h1 class="cio">Packed Record TIDT_Pointer</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="idt.html">idt</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TIDT_Pointer = packed record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Pointer.html#limit">limit</a></b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.TIDT_Pointer.html#base">base</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="limit"></span><code><b>limit</b>: <a  href="system.html#uInt16">uint16</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="base"></span><code><b>base</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										177
									
								
								doc/idt.html
									
									
									
									
									
								
							
							
						
						
									
										177
									
								
								doc/idt.html
									
									
									
									
									
								
							| @@ -1,177 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: idt</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit idt</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Interrupt Descriptor Table - Structures & Interface. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Packed Record <a class="bold" href="idt.TIDT_Entry.html"><code>TIDT_Entry</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname">Packed Record <a class="bold" href="idt.TIDT_Pointer.html"><code>TIDT_Pointer</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="idt.html#init">init</a></b>();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="idt.html#set_gate">set_gate</a></b>(Number : <a  href="system.html#uInt8">uint8</a>; Base : <a  href="system.html#uInt32">uint32</a>; Selector : <a  href="system.html#uInt16">uint16</a>; Flags : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#PIDT_Entry">PIDT_Entry</a></b> = ˆ<a  href="idt.TIDT_Entry.html">TIDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#PIDT_Pointer">PIDT_Pointer</a></b> = ˆ<a  href="idt.TIDT_Pointer.html">TIDT_Pointer</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#ISR_RING_0">ISR_RING_0</a></b> = $8E;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#ISR_RING_1">ISR_RING_1</a></b> = $AE;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#ISR_RING_2">ISR_RING_2</a></b> = $CE;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#ISR_RING_3">ISR_RING_3</a></b> = $EE;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#IDT_Entries">IDT_Entries</a></b>: Array [0..255] of <a  href="idt.TIDT_Entry.html">TIDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="idt.html#IDT_Pointer">IDT_Pointer</a></b>: <a  href="idt.TIDT_Pointer.html">TIDT_Pointer</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="set_gate"></span><code>procedure <b>set_gate</b>(Number : <a  href="system.html#uInt8">uint8</a>; Base : <a  href="system.html#uInt32">uint32</a>; Selector : <a  href="system.html#uInt16">uint16</a>; Flags : <a  href="system.html#uInt8">uint8</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PIDT_Entry"></span><code><b>PIDT_Entry</b> = ˆ<a  href="idt.TIDT_Entry.html">TIDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PIDT_Pointer"></span><code><b>PIDT_Pointer</b> = ˆ<a  href="idt.TIDT_Pointer.html">TIDT_Pointer</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Constants</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ISR_RING_0"></span><code><b>ISR_RING_0</b> = $8E;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ISR_RING_1"></span><code><b>ISR_RING_1</b> = $AE;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ISR_RING_2"></span><code><b>ISR_RING_2</b> = $CE;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ISR_RING_3"></span><code><b>ISR_RING_3</b> = $EE;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="IDT_Entries"></span><code><b>IDT_Entries</b>: Array [0..255] of <a  href="idt.TIDT_Entry.html">TIDT_Entry</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="IDT_Pointer"></span><code><b>IDT_Pointer</b>: <a  href="idt.TIDT_Pointer.html">TIDT_Pointer</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										370
									
								
								doc/index.html
									
									
									
									
									
								
							
							
						
						
									
										370
									
								
								doc/index.html
									
									
									
									
									
								
							| @@ -1,370 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: All Units</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="allitems">All Units</h1> | ||||
| <table class="unitstable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="ACE.html">ACE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>ACE</code> - Alignment Check Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="arp.html">arp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L3-><code>ARP</code> - Address Resolution Protocol Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="asuro.html">asuro</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Asuro</code> - Auto-Generated <a class="normal" href="asuro.html#VERSION">Version</a> & Compilation Information | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="bios_data_area.html">bios_data_area</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>BIOS_Data_Area</code> - Data Structures Controlled by the BIOS.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="BPE.html">BPE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>BPE</code> - Break Point Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="BTSSE.html">BTSSE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>BTSSE</code> - Bad <a class="normal" href="tss.html">TSS</a> Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="CFE.html">CFE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>CFE</code> - Coprocessor Fault Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="console.html">console</a></td> | ||||
| <td class="itemdesc"><p><code>Console</code> - Provides Screen/Window management & drawing.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="contextswitcher.html">contextswitcher</a></td> | ||||
| <td class="itemdesc"><p><code>ContextSwitcher</code> - Switch Process Contexts when preempted.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="cpu.html">cpu</a></td> | ||||
| <td class="itemdesc"><p><code>CPU</code> - <code>CPU</code> Structures & Utility/Capabilities Functions.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="crc.html">crc</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>CRC</code> - <a class="normal" href="crc.html#CRC32">CRC32</a> Implementation.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="CSOE.html">CSOE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>CSOE</code> - Coprocessor Seg Overruun Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="DBGE.html">DBGE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>DBGE</code> - Debug Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="DBZ.html">DBZ</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>DBZ</code> - Divide By Zero Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="DFE.html">DFE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>DFE</code> - Double Fault Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="drivermanagement.html">drivermanagement</a></td> | ||||
| <td class="itemdesc"><p><code>DriverManagement</code> - Driver Initialization & Management Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="drivertypes.html">drivertypes</a></td> | ||||
| <td class="itemdesc"><p>Driver->Include-><code>DriverTypes</code> - Structs & Data Shared Across Drivers.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="E1000.html">E1000</a></td> | ||||
| <td class="itemdesc"><p>Driver->NetDev-><code>E1000</code> - Intel <code>E1000</code>/I217/82577LM Network Card Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="EHCI.html">EHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>EHCI</code> - Enhanced Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="eth2.html">eth2</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L2-><code>Eth2</code> - Ethernet Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="faults.html">faults</a></td> | ||||
| <td class="itemdesc"><p><code>Faults</code> - Fault Registration & Detouring.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="fonts.html">fonts</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Fonts</code> - Standard <code>Fonts</code> & Font Masks.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="gdt.html">gdt</a></td> | ||||
| <td class="itemdesc"><p>Global Descriptor Table - Data Structures & Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="GPF.html">GPF</a></td> | ||||
| <td class="itemdesc"><p>Fault-><a class="normal" href="util.html#GPF">GPF</a> - General Protection Fault.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="icmp.html">icmp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L4-><code>ICMP</code> - Internet Control Message Protocol Driver, | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="IDOE.html">IDOE</a></td> | ||||
| <td class="itemdesc"><p>Fault->IDO - Into Detected Overflow Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="idt.html">idt</a></td> | ||||
| <td class="itemdesc"><p>Interrupt Descriptor Table - Structures & Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="IOPE.html">IOPE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>IOPE</code> - Invalid OPCode Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="ipv4.html">ipv4</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L3-><code>IPv4</code> - Internet Protocol <a class="normal" href="asuro.html#VERSION">Version</a> 4 Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="irq.html">irq</a></td> | ||||
| <td class="itemdesc"><p>Interrupt Request Line - Initialization & Remapping.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isr.html">isr</a></td> | ||||
| <td class="itemdesc"><p><code>ISR</code> Driver - Initialization (stub).</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="isrmanager.html">isrmanager</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="isr.html">ISR</a>-><code>ISRManager</code> - Interrupt Service Routine Registration, Dispatch & Management.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="isr_types.html">isr_types</a></td> | ||||
| <td class="itemdesc"><p><a class="normal" href="isr.html">ISR</a>-><code>ISR_Types</code> - Interrupt Service Routine Structures.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="kernel.html">kernel</a></td> | ||||
| <td class="itemdesc"><p><code>Kernel</code> Main - Main <code>Kernel</code> Entry Point.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="keyboard.html">keyboard</a></td> | ||||
| <td class="itemdesc"><p>Driver->HID-><code>Keyboard</code> - <code>Keyboard</code> Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="lists.html">lists</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Lists</code> - Linked List Data Structures & Helpers.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="lmemorymanager.html">lmemorymanager</a></td> | ||||
| <td class="itemdesc"><p><code>LMemoryManager</code> - Logical Memory Management | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="MCE.html">MCE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>MCE</code> - Machine Check Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="memview.html">memview</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>MemView</code> - Live Memory View.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="mouse.html">mouse</a></td> | ||||
| <td class="itemdesc"><p>Driver->HID-><code>Mouse</code> - <code>Mouse</code> Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="multiboot.html">multiboot</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Multiboot</code> - <code>Multiboot</code> Structures & Access.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="NCE.html">NCE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>NCE</code> - No Coprocessor Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="net.html">net</a></td> | ||||
| <td class="itemdesc"><p>Driver-><code>Net</code>->L1-><code>Net</code> - Network Card<->Driver Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="netlog.html">netlog</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>NetLog</code> - Network Driver Logs.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="nettypes.html">nettypes</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>-><code>NetTypes</code> - Structures & <a class="normal" href="types.html">Types</a> Shared Across Network Drivers.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="netutils.html">netutils</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>-><code>NetUtils</code> - Helper Functions For Network Drivers.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="NMIE.html">NMIE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>NMIE</code> - Non-Maskable Interrupt Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="OHCI.html">OHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>OHCI</code> - Open Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="OOBE.html">OOBE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>OOBE</code> - Out Of Bounds Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PCI.html">PCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>PCI</code> - Peripheral Component Interconnect Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="PF.html">PF</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>PF</code> - Page Fault.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="pmemorymanager.html">pmemorymanager</a></td> | ||||
| <td class="itemdesc"><p><code>PMemoryManager</code> - Physical Memory Management | ||||
|  | ||||
| <p></p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="processloader.html">processloader</a></td> | ||||
| <td class="itemdesc"><p><code>ProcessLoader</code> - Process Initialization & Tasking (stub).</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="PS2_KEYBOARD_ISR.html">PS2_KEYBOARD_ISR</a></td> | ||||
| <td class="itemdesc"><p>Driver->HID->PS2_KEYBAORD_ISR - PS2 <a class="normal" href="isr.html">ISR</a> <a class="normal" href="PS2_KEYBOARD_ISR.html#hook">Hook</a> & Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="RTC.html">RTC</a></td> | ||||
| <td class="itemdesc"><p>Driver->Timers-><code>RTC</code> - Real Time Clock Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="scheduler.html">scheduler</a></td> | ||||
| <td class="itemdesc"><p><code>Scheduler</code> - Schedules Context Switches.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="serial.html">serial</a></td> | ||||
| <td class="itemdesc"><p>Driver->Interface-><code>Serial</code> - <code>Serial</code> Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="SFE.html">SFE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>SFE</code> - <a class="normal" href="util.html#stack">Stack</a> Fault Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="shell.html">shell</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Shell</code> - Main Desktop UI.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="SNPE.html">SNPE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>SNPE</code> - Segment Not Present Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="splash.html">splash</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Splash</code> - <a class="normal" href="asuro.html">Asuro</a> <code>Splash</code> Screen.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="strings.html">strings</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Strings</code> - String Manipulation.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="system.html">system</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>System</code> - Base <a class="normal" href="types.html">Types</a> & Structures.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="tcp.html">tcp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L4-><code>TCP</code> - Transmission Control Protocol Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="terminal.html">terminal</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Terminal</code> - Interactive Command Line Environment.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="testdriver.html">testdriver</a></td> | ||||
| <td class="itemdesc"><p>Driver->Exp-><code>TestDriver</code> - Dummy Driver For Testing.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="themer.html">themer</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>Themer</code> - Live Desktop Color Picker.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="TMR_0_ISR.html">TMR_0_ISR</a></td> | ||||
| <td class="itemdesc"><p>Driver->Timer-><code>TMR_0_ISR</code> - 1024hz Timer Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="TMR_1_ISR.html">TMR_1_ISR</a></td> | ||||
| <td class="itemdesc"><p>Driver->Timer-><code>TMR_1_ISR</code> - 1024/s Timer Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="tracer.html">tracer</a></td> | ||||
| <td class="itemdesc"><p><code>Tracer</code> - Trace <a class="normal" href="util.html#stack">stack</a> for debugging method calls.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="tss.html">tss</a></td> | ||||
| <td class="itemdesc"><p><code>TSS</code> - Task State Segment (stub).</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="types.html">types</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Types</code> - Dummy Unit For VM Compatability.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="udp.html">udp</a></td> | ||||
| <td class="itemdesc"><p>Driver-><a class="normal" href="net.html">Net</a>->L4-><code>UDP</code> - User Datagram Protocol Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="UHCI.html">UHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>UHCI</code> - Universal Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="UIE.html">UIE</a></td> | ||||
| <td class="itemdesc"><p>Fault-><code>UIE</code> - Unknown Interrupt Exception.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="USB.html">USB</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>USB</code> - Universal <a class="normal" href="serial.html">Serial</a> Bus Driver/Interface.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="util.html">util</a></td> | ||||
| <td class="itemdesc"><p>Include-><code>Util</code> - Data Manipulation Utlities.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmemorymanager.html">vmemorymanager</a></td> | ||||
| <td class="itemdesc"><p><code>VMemoryManager</code> - Virtual Memory Management.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="vmlog.html">vmlog</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>VMLog</code> - Virtual Machine Event Log.</p></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemname"><a class="bold" href="vmstate.html">vmstate</a></td> | ||||
| <td class="itemdesc"><p>Prog-><code>VMState</code> - Live MINJ Virtual Machine State Information.</p></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname"><a class="bold" href="XHCI.html">XHCI</a></td> | ||||
| <td class="itemdesc"><p>Driver->Bus-><code>XHCI</code> - eXtensible Host Controller Interface Driver.</p></td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,90 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: ipv4</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit ipv4</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver-><a class="normal" href="net.html">Net</a>->L3-><code>IPv4</code> - Internet Protocol <a class="normal" href="asuro.html#VERSION">Version</a> 4 Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="tracer.html">tracer</a></li><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li><li><a  href="terminal.html">terminal</a></li><li><a  href="strings.html">strings</a></li><li><a  href="net.html">net</a></li><li><a  href="nettypes.html">nettypes</a></li><li><a  href="netutils.html">netutils</a></li><li><a  href="netlog.html">netlog</a></li><li><a  href="lists.html">lists</a></li><li><a  href="eth2.html">eth2</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="ipv4.html#send">send</a></b>(p_data : <a  href="system.html#Void">void</a>; p_len : <a  href="system.html#uInt16">uint16</a>; p_context : <a  href="nettypes.html#PPacketContext">PPacketContext</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="ipv4.html#registerProtocol">registerProtocol</a></b>(Protocol_ID : <a  href="system.html#uInt8">uint8</a>; recv_callback : <a  href="nettypes.html#TRecvCallback">TRecvCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>function <b><a  href="ipv4.html#getIPv4Config">getIPv4Config</a></b> : <a  href="nettypes.html#PIPv4Configuration">PIPv4Configuration</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="ipv4.html#register">register</a></b>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="send"></span><code>procedure <b>send</b>(p_data : <a  href="system.html#Void">void</a>; p_len : <a  href="system.html#uInt16">uint16</a>; p_context : <a  href="nettypes.html#PPacketContext">PPacketContext</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="registerProtocol"></span><code>procedure <b>registerProtocol</b>(Protocol_ID : <a  href="system.html#uInt8">uint8</a>; recv_callback : <a  href="nettypes.html#TRecvCallback">TRecvCallback</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="getIPv4Config"></span><code>function <b>getIPv4Config</b> : <a  href="nettypes.html#PIPv4Configuration">PIPv4Configuration</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="register"></span><code>procedure <b>register</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/irq.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/irq.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: irq</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit irq</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Interrupt Request Line - Initialization & Remapping. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="util.html">util</a></li><li><a  href="console.html">console</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="irq.html#init">init</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Aaron Hance <<a  href="mailto:ah@aaronhance.me">ah@aaronhance.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
							
								
								
									
										60
									
								
								doc/isr.html
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								doc/isr.html
									
									
									
									
									
								
							| @@ -1,60 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: isr</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit isr</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <code>ISR</code> Driver - Initialization (stub). | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="console.html">Console</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="isr.html#init">init</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,187 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: isr_types: Record TRegisters</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TRegisters"></span><h1 class="cio">Record TRegisters</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="isr_types.html">isr_types</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TRegisters = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#edi">edi</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#esi">esi</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#ebp">ebp</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#esp">esp</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#ebx">ebx</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#edx">edx</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#ecx">ecx</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#eax">eax</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#ErrorCode">ErrorCode</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#eip">eip</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#cs">cs</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#eflags">eflags</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#UserESP">UserESP</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.TRegisters.html#ss">ss</a></b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="edi"></span><code><b>edi</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="esi"></span><code><b>esi</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ebp"></span><code><b>ebp</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="esp"></span><code><b>esp</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ebx"></span><code><b>ebx</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="edx"></span><code><b>edx</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ecx"></span><code><b>ecx</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="eax"></span><code><b>eax</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ErrorCode"></span><code><b>ErrorCode</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="eip"></span><code><b>eip</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="cs"></span><code><b>cs</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="eflags"></span><code><b>eflags</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="UserESP"></span><code><b>UserESP</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ss"></span><code><b>ss</b>: <a  href="system.html#uInt32">uint32</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,104 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: isr_types</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit isr_types</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Uses</div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section">Functions and Procedures</div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section"><a class="section" href="#PasDoc-Constants">Constants</a></div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <a class="normal" href="isr.html">ISR</a>-><code>ISR_Types</code> - Interrupt Service Routine Structures. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Record <a class="bold" href="isr_types.TRegisters.html"><code>TRegisters</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.html#PRegisters">PRegisters</a></b> = ˆ<a  href="isr_types.TRegisters.html">TRegisters</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.html#pp_hook_method">pp_hook_method</a></b> = procedure(data : <a  href="system.html#Void">void</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.html#pp_void">pp_void</a></b> = <a  href="isr_types.html#pp_hook_method">pp_hook_method</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Constants"></span><h3 class="summary">Constants</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isr_types.html#MAX_HOOKS">MAX_HOOKS</a></b> = 16;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PRegisters"></span><code><b>PRegisters</b> = ˆ<a  href="isr_types.TRegisters.html">TRegisters</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="pp_hook_method"></span><code><b>pp_hook_method</b> = procedure(data : <a  href="system.html#Void">void</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="pp_void"></span><code><b>pp_void</b> = <a  href="isr_types.html#pp_hook_method">pp_hook_method</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Constants</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="MAX_HOOKS"></span><code><b>MAX_HOOKS</b> = 16;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,104 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: isrmanager</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit isrmanager</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <a class="normal" href="isr.html">ISR</a>-><code>ISRManager</code> - Interrupt Service Routine Registration, Dispatch & Management. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="isr.html">isr</a></li><li><a  href="idt.html">idt</a></li><li><a  href="isr_types.html">isr_types</a></li><li><a  href="util.html">util</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="isrmanager.html#init">init</a></b>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="isrmanager.html#registerISR">registerISR</a></b>(INT_N : <a  href="system.html#uInt8">uint8</a>; callback : <a  href="isrmanager.html#TISRHook">TISRHook</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isrmanager.html#TISRHook">TISRHook</a></b> = procedure();</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="isrmanager.html#TISRNHookArray">TISRNHookArray</a></b> = Array[0..<a  href="isr_types.html#MAX_HOOKS">MAX_HOOKS</a>] of <a  href="isrmanager.html#TISRHook">TISRHook</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="isrmanager.html#TISRHookArray">TISRHookArray</a></b> = Array[0..255] of <a  href="isrmanager.html#TISRNHookArray">TISRNHookArray</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="registerISR"></span><code>procedure <b>registerISR</b>(INT_N : <a  href="system.html#uInt8">uint8</a>; callback : <a  href="isrmanager.html#TISRHook">TISRHook</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TISRHook"></span><code><b>TISRHook</b> = procedure();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TISRNHookArray"></span><code><b>TISRNHookArray</b> = Array[0..<a  href="isr_types.html#MAX_HOOKS">MAX_HOOKS</a>] of <a  href="isrmanager.html#TISRHook">TISRHook</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="TISRHookArray"></span><code><b>TISRHookArray</b> = Array[0..255] of <a  href="isrmanager.html#TISRNHookArray">TISRNHookArray</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,61 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: kernel</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit kernel</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section">Classes, Interfaces, Objects and Records</div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section">Types</div><div class="one_section">Constants</div><div class="one_section">Variables</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| <code>Kernel</code> Main - Main <code>Kernel</code> Entry Point. | ||||
|  | ||||
| <p> </p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="multiboot.html">multiboot</a></li><li><a  href="bios_data_area.html">bios_data_area</a></li><li><a  href="util.html">util</a></li><li><a  href="gdt.html">gdt</a></li><li><a  href="idt.html">idt</a></li><li><a  href="isr.html">isr</a></li><li><a  href="irq.html">irq</a></li><li><a  href="tss.html">tss</a></li><li><a  href="TMR_0_ISR.html">TMR_0_ISR</a></li><li><a  href="console.html">console</a></li><li><a  href="keyboard.html">keyboard</a></li><li><a  href="mouse.html">mouse</a></li><li><a  href="vmemorymanager.html">vmemorymanager</a></li><li><a  href="pmemorymanager.html">pmemorymanager</a></li><li><a  href="lmemorymanager.html">lmemorymanager</a></li><li><a  href="tracer.html">tracer</a></li><li><a  href="drivermanagement.html">drivermanagement</a></li><li><a  href="scheduler.html">scheduler</a></li><li><a  href="PCI.html">PCI</a></li><li><a  href="terminal.html">Terminal</a></li><li><a  href="strings.html">strings</a></li><li><a  href="USB.html">USB</a></li><li><a  href="testdriver.html">testdriver</a></li><li><a  href="E1000.html">E1000</a></li><li>IDE</li><li>storagemanagement</li><li><a  href="lists.html">lists</a></li><li><a  href="net.html">net</a></li><li>fat32</li><li><a  href="isrmanager.html">isrmanager</a></li><li><a  href="faults.html">faults</a></li><li><a  href="fonts.html">fonts</a></li><li><a  href="RTC.html">RTC</a></li><li><a  href="serial.html">serial</a></li><li><a  href="shell.html">shell</a></li><li><a  href="memview.html">memview</a></li><li><a  href="splash.html">splash</a></li><li><a  href="cpu.html">cpu</a></li><li><a  href="themer.html">themer</a></li><li><a  href="netlog.html">netlog</a></li><li><a  href="vmlog.html">vmlog</a></li><li>vm</li><li><a  href="vmstate.html">vmstate</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="kernel.html#kmain">kmain</a></b>(mbinfo: <a  href="multiboot.html#Pmultiboot_info_t">Pmultiboot_info_t</a>; mbmagic: <a  href="system.html#uInt32">uint32</a>); stdcall;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="kmain"></span><code>procedure <b>kmain</b>(mbinfo: <a  href="multiboot.html#Pmultiboot_info_t">Pmultiboot_info_t</a>; mbmagic: <a  href="system.html#uInt32">uint32</a>); stdcall;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Authors</h2> | ||||
| <ul class="authors"> | ||||
| <li>Kieron Morris <<a  href="mailto:kjm@kieronmorris.me">kjm@kieronmorris.me</a>></li> | ||||
| <li>Aaron Hance <<a  href="mailto:ah@aaronhance.me">ah@aaronhance.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,99 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: keyboard: Packed Record TKeyInfo</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TKeyInfo"></span><h1 class="cio">Packed Record TKeyInfo</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="keyboard.html">keyboard</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TKeyInfo = packed record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.TKeyInfo.html#key_code">key_code</a></b>: byte;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.TKeyInfo.html#is_down_code">is_down_code</a></b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.TKeyInfo.html#SHIFT_DOWN">SHIFT_DOWN</a></b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.TKeyInfo.html#CTRL_DOWN">CTRL_DOWN</a></b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.TKeyInfo.html#ALT_DOWN">ALT_DOWN</a></b>: boolean;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="key_code"></span><code><b>key_code</b>: byte;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="is_down_code"></span><code><b>is_down_code</b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="SHIFT_DOWN"></span><code><b>SHIFT_DOWN</b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
| <p> | ||||
| true when pressing down, false when releasing</p> | ||||
| </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="CTRL_DOWN"></span><code><b>CTRL_DOWN</b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="ALT_DOWN"></span><code><b>ALT_DOWN</b>: boolean;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,179 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: keyboard</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="unit">Unit keyboard</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section"><a class="section" href="#PasDoc-Uses">Uses</a></div><div class="one_section"><a class="section" href="#PasDoc-Classes">Classes, Interfaces, Objects and Records</a></div><div class="one_section"><a class="section" href="#PasDoc-FuncsProcs">Functions and Procedures</a></div><div class="one_section"><a class="section" href="#PasDoc-Types">Types</a></div><div class="one_section">Constants</div><div class="one_section"><a class="section" href="#PasDoc-Variables">Variables</a></div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="description">Description</h2> | ||||
| <p> | ||||
| Driver->HID-><code>Keyboard</code> - <code>Keyboard</code> Driver. | ||||
|  | ||||
| <p></p> | ||||
| <span id="PasDoc-Uses"></span><h2 class="uses">Uses</h2> | ||||
| <ul class="useslist"><li><a  href="console.html">console</a></li><li><a  href="util.html">util</a></li><li><a  href="PS2_KEYBOARD_ISR.html">PS2_KEYBOARD_ISR</a></li></ul><h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Classes"></span><h3 class="cio">Classes, Interfaces, Objects and Records</h3> | ||||
| <table class="classestable wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Name</th> | ||||
| <th class="itemdesc">Description</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemname">Packed Record <a class="bold" href="keyboard.TKeyInfo.html"><code>TKeyInfo</code></a></td> | ||||
| <td class="itemdesc"> </td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-FuncsProcs"></span><h3 class="summary">Functions and Procedures</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="keyboard.html#init">init</a></b>(keyboard_layout : array of <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="keyboard.html#hook">hook</a></b>(proc : <a  href="keyboard.html#pp_hook_method">pp_hook_method</a>);</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code>procedure <b><a  href="keyboard.html#lang_USA">lang_USA</a></b>();</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Types"></span><h3 class="summary">Types</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#PKeyInfo">PKeyInfo</a></b>       = ˆ<a  href="keyboard.TKeyInfo.html">TKeyInfo</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#pp_hook_method">pp_hook_method</a></b> = procedure(key_info : <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>);</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <span id="PasDoc-Variables"></span><h3 class="summary">Variables</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#key_matrix">key_matrix</a></b>: array [1..256] of <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#key_matrix_shift">key_matrix_shift</a></b>: array [1..256] of <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#captin_hook">captin_hook</a></b>: <a  href="keyboard.html#pp_hook_method">pp_hook_method</a> = nil;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#is_shift">is_shift</a></b>: boolean = false;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#is_ctrl">is_ctrl</a></b>: boolean = false;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="keyboard.html#is_alt">is_alt</a></b>: boolean = false;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Functions and Procedures</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="init"></span><code>procedure <b>init</b>(keyboard_layout : array of <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="hook"></span><code>procedure <b>hook</b>(proc : <a  href="keyboard.html#pp_hook_method">pp_hook_method</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="lang_USA"></span><code>procedure <b>lang_USA</b>();</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Types</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="PKeyInfo"></span><code><b>PKeyInfo</b>       = ˆ<a  href="keyboard.TKeyInfo.html">TKeyInfo</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="pp_hook_method"></span><code><b>pp_hook_method</b> = procedure(key_info : <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>);</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h3 class="detail">Variables</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="key_matrix"></span><code><b>key_matrix</b>: array [1..256] of <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="key_matrix_shift"></span><code><b>key_matrix_shift</b>: array [1..256] of <a  href="keyboard.TKeyInfo.html">TKeyInfo</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="captin_hook"></span><code><b>captin_hook</b>: <a  href="keyboard.html#pp_hook_method">pp_hook_method</a> = nil;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="is_shift"></span><code><b>is_shift</b>: boolean = false;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="is_ctrl"></span><code><b>is_ctrl</b>: boolean = false;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="is_alt"></span><code><b>is_alt</b>: boolean = false;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <h2 class="authors">Author</h2> | ||||
| <ul class="authors"> | ||||
| <li>Aaron Hance <<a  href="mailto:ah@aaronhance.me">ah@aaronhance.me</a>></li> | ||||
| </ul> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,70 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: Legend</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <h1 class="markerlegend">Legend</h1> | ||||
| <table class="markerlegend wide_list"> | ||||
| <tr class="listheader"> | ||||
| <th class="itemname">Marker</th> | ||||
| <th class="itemdesc">Visibility</th> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="legendmarker"><img  src="private.gif" alt="Strict Private" title="Strict Private"></td> | ||||
| <td class="legenddesc">Strict Private</td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="legendmarker"><img  src="private.gif" alt="Private" title="Private"></td> | ||||
| <td class="legenddesc">Private</td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="legendmarker"><img  src="protected.gif" alt="Strict Protected" title="Strict Protected"></td> | ||||
| <td class="legenddesc">Strict Protected</td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="legendmarker"><img  src="protected.gif" alt="Protected" title="Protected"></td> | ||||
| <td class="legenddesc">Protected</td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="legendmarker"><img  src="public.gif" alt="Public" title="Public"></td> | ||||
| <td class="legenddesc">Public</td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="legendmarker"><img  src="published.gif" alt="Published" title="Published"></td> | ||||
| <td class="legenddesc">Published</td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="legendmarker"><img  src="automated.gif" alt="Automated" title="Automated"></td> | ||||
| <td class="legenddesc">Automated</td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="legendmarker"><img  src="published.gif" alt="Implicit" title="Implicit"></td> | ||||
| <td class="legenddesc">Implicit</td> | ||||
| </tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
| @@ -1,77 +0,0 @@ | ||||
| <!DOCTYPE html> | ||||
| <html lang="en"> | ||||
| <head> | ||||
| <title>Asuro: lists: Record TLinkedList</title> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <meta name="generator" content="PasDoc 0.15.0"> | ||||
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||||
| <link rel="stylesheet" type="text/css" href="tipuesearch/tipuesearch.css"> | ||||
|  | ||||
| <link rel="StyleSheet" type="text/css" href="pasdoc.css"> | ||||
| </head> | ||||
| <body> | ||||
| <table class="container"><tr><td class="navigation"> | ||||
| <h2>Asuro</h2><p><a href="AllUnits.html" class="navigation">Units</a></p><p><a href="ClassHierarchy.html" class="navigation">Class Hierarchy</a></p><p><a href="AllClasses.html" class="navigation">Classes, Interfaces, Objects and Records</a></p><p><a href="AllTypes.html" class="navigation">Types</a></p><p><a href="AllVariables.html" class="navigation">Variables</a></p><p><a href="AllConstants.html" class="navigation">Constants</a></p><p><a href="AllFunctions.html" class="navigation">Functions and Procedures</a></p><p><a href="AllIdentifiers.html" class="navigation">Identifiers</a></p><p><a href="GVUses.png" class="navigation">Unit dependency graph</a></p><form class="search-form" action="_tipue_results.html"><div class="search-input"><input type="text" name="q" id="tipue_search_input"></div><div class="search-button"><input type="button" id="tipue_search_button" onclick="this.form.submit();"></div></form> | ||||
| <div style="clear: both"></div> | ||||
|  | ||||
| <script type="text/javascript"> | ||||
| $(document).ready(function() { | ||||
|     $('#tipue_search_input').tipuesearch({ | ||||
|         /* 10 items to display seems standard */ | ||||
|         'show': 10, | ||||
|         /* For PasDoc docs, showing urls is not very useful, | ||||
|            since the page title already shows the unit and identifier. */ | ||||
|         'showURL': false | ||||
|     }); | ||||
| }); | ||||
| </script> | ||||
| </td><td class="content"> | ||||
| <span id="TLinkedList"></span><h1 class="cio">Record TLinkedList</h1> | ||||
| <div class="sections"> | ||||
| <div class="one_section"><a class="section" href="#PasDoc-Description">Description</a></div><div class="one_section">Hierarchy</div><div class="one_section"><a class="section" href="#PasDoc-Fields">Fields</a></div><div class="one_section">Methods</div><div class="one_section">Properties</div></div> | ||||
| <span id="PasDoc-Description"></span><h2 class="unit">Unit</h2> | ||||
| <p class="unitlink"> | ||||
| <a  href="lists.html">lists</a></p> | ||||
| <h2 class="declaration">Declaration</h2> | ||||
| <p class="declaration"> | ||||
| <code>type TLinkedList = record</code></p> | ||||
| <h2 class="description">Description</h2> | ||||
|  <h2 class="overview">Overview</h2> | ||||
| <span id="PasDoc-Fields"></span><h3 class="summary">Fields</h3> | ||||
| <table class="summary wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="lists.TLinkedList.html#Previous">Previous</a></b>: <a  href="lists.html#PLinkedList">PLinkedList</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list2"> | ||||
| <td class="itemcode"><code><b><a  href="lists.TLinkedList.html#Data">Data</a></b>: <a  href="system.html#Void">void</a>;</code></td> | ||||
| </tr> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><code><b><a  href="lists.TLinkedList.html#Next">Next</a></b>: <a  href="lists.html#PLinkedList">PLinkedList</a>;</code></td> | ||||
| </tr> | ||||
| </table> | ||||
| <h2 class="description">Description</h2> | ||||
| <h3 class="detail">Fields</h3> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Previous"></span><code><b>Previous</b>: <a  href="lists.html#PLinkedList">PLinkedList</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Data"></span><code><b>Data</b>: <a  href="system.html#Void">void</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <table class="detail wide_list"> | ||||
| <tr class="list"> | ||||
| <td class="itemcode"><span id="Next"></span><code><b>Next</b>: <a  href="lists.html#PLinkedList">PLinkedList</a>;</code></td> | ||||
| </tr> | ||||
| <tr><td colspan="1"> | ||||
|  </td></tr> | ||||
| </table> | ||||
| <hr><span class="appinfo"><em>Generated by <a  href="https://github.com/pasdoc/pasdoc/wiki">PasDoc 0.15.0</a>. </em> | ||||
| </span> | ||||
| </td></tr></table></body></html> | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user