├── .gitignore ├── 386ASM.H ├── AC97.C ├── AC97.H ├── ARGS.C ├── ARGS.H ├── CPU_K6.C ├── CPU_K6.H ├── DEBUG.H ├── PCI.C ├── PCI.H ├── README.md ├── SYS.C ├── SYS.H ├── TYPES.H ├── UTIL.C ├── UTIL.H ├── VESABIOS.C ├── VESABIOS.H ├── VGACON.C └── VGACON.H /.gitignore: -------------------------------------------------------------------------------- 1 | *.obj 2 | -------------------------------------------------------------------------------- /386ASM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/386ASM.H -------------------------------------------------------------------------------- /AC97.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/AC97.C -------------------------------------------------------------------------------- /AC97.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/AC97.H -------------------------------------------------------------------------------- /ARGS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/ARGS.C -------------------------------------------------------------------------------- /ARGS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/ARGS.H -------------------------------------------------------------------------------- /CPU_K6.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/CPU_K6.C -------------------------------------------------------------------------------- /CPU_K6.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/CPU_K6.H -------------------------------------------------------------------------------- /DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/DEBUG.H -------------------------------------------------------------------------------- /PCI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/PCI.C -------------------------------------------------------------------------------- /PCI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/PCI.H -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/README.md -------------------------------------------------------------------------------- /SYS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/SYS.C -------------------------------------------------------------------------------- /SYS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/SYS.H -------------------------------------------------------------------------------- /TYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/TYPES.H -------------------------------------------------------------------------------- /UTIL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/UTIL.C -------------------------------------------------------------------------------- /UTIL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/UTIL.H -------------------------------------------------------------------------------- /VESABIOS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/VESABIOS.C -------------------------------------------------------------------------------- /VESABIOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/VESABIOS.H -------------------------------------------------------------------------------- /VGACON.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/VGACON.C -------------------------------------------------------------------------------- /VGACON.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerg866/lib866d/HEAD/VGACON.H --------------------------------------------------------------------------------