1. 745de85 Add TSC emulation layer for 386/486 CPUs. by Kevin O'Connor · 12 years ago
  2. a6ad7df Add vbe_flag field in BDA by Julian Pidancet · 13 years ago
  3. 9a01a9c Only show bootsplash during boot menu. by Kevin O'Connor · 14 years ago
  4. cc9e1bf Add FUNC16() helper macro for converting a 16bit func to a segoff_s. by Kevin O'Connor · 14 years ago
  5. cadaf0e Be sure to disable bootsplash on all BIOS boot cases. by Kevin O'Connor · 14 years ago
  6. d5d02b6 Allocate cdemu buffer in low mem instead of ebda. by Kevin O'Connor · 14 years ago
  7. 6704cf9 Revert "Rework disabling of ps2 port irqs." by Kevin O'Connor · 14 years ago
  8. 8f469b9 Dynamically allocate ata_channel info; introduce custom atadrive_s struct. by Kevin O'Connor · 14 years ago
  9. d7e998f Dynamically allocate each drive_g with malloc_fseg(). by Kevin O'Connor · 14 years ago
  10. 84a4d4b Support USB keyboard auto-repeat. by Kevin O'Connor · 14 years ago
  11. 6f702dd Rework disabling of ps2 port irqs. by Kevin O'Connor · 15 years ago
  12. 1ca05b0 Be sure to add "void" to all function prototypes that take no args. by Kevin O'Connor · 15 years ago
  13. 871e0a0 Add support for 32bit PCI BIOS entry. by Kevin O'Connor · 15 years ago
  14. 52a300f Introduce MODESEGMENT define; rename VISIBLE32 to VISIBLE32FLAT. by Kevin O'Connor · 15 years ago
  15. ad90159 Enhance experimental option rom "threading" - enable preemption. by Kevin O'Connor · 15 years ago
  16. 77d227b Pass 'drive_s' pointer instead of driveid. by Kevin O'Connor · 15 years ago
  17. f416fe9 Add support for permanent low memory allocations. by Kevin O'Connor · 15 years ago
  18. 40c0e48 Define bit names for keyboard shift flags. by Kevin O'Connor · 15 years ago
  19. 9f98542 Replace common segment/offset pairs with struct segoff_s. by Kevin O'Connor · 15 years ago
  20. 669e644 Store cdrom emulated driveid directly. by Kevin O'Connor · 15 years ago
  21. c892b13 Separate ATA code from generic disk code. by Kevin O'Connor · 15 years ago
  22. 9ae1e9b Remove unused cdemu ATA code. by Kevin O'Connor · 15 years ago
  23. b68ac71 Implement cdrom disk emulation at high-level instead of in low-level ATA. by Kevin O'Connor · 15 years ago
  24. 0bf9270 Add Post Memory Manager (PMM) support. by Kevin O'Connor · 15 years ago
  25. 0b60a06 Unify mode16/32 compiler checks. by Kevin O'Connor · 15 years ago
  26. 49553a4 Verify ebda segment looks sane before using during resume. by Kevin O'Connor · 15 years ago
  27. 3d29213 Minor - add some additional vga definitions of bda. by Kevin O'Connor · 15 years ago
  28. a3b612e More floppy code cleanups. by Kevin O'Connor · 15 years ago
  29. 8b267cb Implement memcpy_far and checksum_far, and replace _fl variants. by Kevin O'Connor · 16 years ago
  30. 35ae726 Rename MAKE_FARPTR (and similar) to MAKE_FLATPTR. by Kevin O'Connor · 16 years ago
  31. a9e286d Minor - streamline SET_GLOBAL macro - reduce #if usage. by Kevin O'Connor · 16 years ago
  32. 3085376 Move variables from assembler to C code. by Kevin O'Connor · 16 years ago
  33. b1b7c2a Change license from GPLv3 to LGPLv3. by Kevin O'Connor · 16 years ago
  34. 8c0e372 The BDA is at segment 0x0040 not 0x0000. by Kevin O'Connor · 16 years ago
  35. 7f34309 Switch to new stack when calling ATA function in 16bit mode. by Kevin O'Connor · 16 years ago
  36. 4a16ef6 Return CDEMU parameters to ebda segment (instead of using globals). by Kevin O'Connor · 16 years ago
  37. 0881537 Introduce GET/SET_EBDA2() macros - they take a cached ebda seg. by Kevin O'Connor · 16 years ago
  38. c659fde Move IPL definitions from ebda to global variables. by Kevin O'Connor · 16 years ago
  39. 609da23 Move most of ATA and CDEMU from ebda to global variables. by Kevin O'Connor · 16 years ago
  40. e791636 Move ram size definitions from ebda to global variables. by Kevin O'Connor · 16 years ago
  41. 51358db Move pir table offset from ebda to a global variable. by Kevin O'Connor · 16 years ago
  42. 4d7c37e Support a relocatable ebda segment. by Kevin O'Connor · 16 years ago
  43. 15157a3 Implement GET/SET_GLOBAL(...) instead of using GET/SET_VAR(CS, ...) by Kevin O'Connor · 16 years ago
  44. 18e38b2 Improve support for old 16bit resume handlers. by Kevin O'Connor · 16 years ago
  45. f782d60 Avoid casting EBDA variables ipl.description and pir_loc. by Kevin O'Connor · 16 years ago
  46. d995b3d Update e820 map in place instead of copying it. by Kevin O'Connor · 16 years ago
  47. 59c35f2 Add support for more than 4Gig of ram. by Kevin O'Connor · 16 years ago
  48. 6723d03 Supply vga register names for BDA. by Kevin O'Connor · 16 years ago
  49. 53236cc Use PCI bus scan to find all ATA controllers. Several IDE fixes. by Kevin O'Connor · 16 years ago
  50. 3b89719 Rewrite ps2 port (keyboard/mouse) handling. by Kevin O'Connor · 16 years ago
  51. 9521e26 Extract 'struct bregs' out of biosvar.h; clean up header includes. by Kevin O'Connor · 16 years ago
  52. d25810a Generate PIR table at post time. by Kevin O'Connor · 16 years ago
  53. c781293 Enhance e820 memory map generation. by Kevin O'Connor · 16 years ago
  54. abc7597 Establish boot order in post stage. by Kevin O'Connor · 16 years ago
  55. 9dd0dd1 Auto detect EBDA_SIZE from size of data structure. by Kevin O'Connor · 16 years ago
  56. 9571ac2 Unify memory size detection. by Kevin O'Connor · 16 years ago
  57. 1bb3b5c Add full support for drives with more that 2<<32 sectors. by Kevin O'Connor · 16 years ago
  58. 9f0d94d Move hard drive init from post.c to ata.c. by Kevin O'Connor · 16 years ago
  59. e0113c9 Forward port new boot menu features from bochs bios. by Kevin O'Connor · 16 years ago
  60. 438f635 Minor cleanups. by Kevin O'Connor · 16 years ago
  61. 56a506d Merge IPL segment into EBDA segment. by Kevin O'Connor · 16 years ago
  62. a6b9f71 Refactor ata code. by Kevin O'Connor · 16 years ago
  63. 1d01951 Don't pass in ebp/esp to irq handlers. by Kevin O'Connor · 16 years ago
  64. 64c718d use PACKED for bregs declaration by Kevin O'Connor · 16 years ago
  65. ed12849 Reduce stack usage for ISRs; minor fixes. by Kevin O'Connor · 16 years ago
  66. 180a959 Get CDROM emulation working. by Kevin O'Connor · 16 years ago
  67. 6eee8ca types.h & ata.h by Kevin O'Connor · 16 years ago
  68. 44c631d Enhance included bios tables. by Kevin O'Connor · 16 years ago
  69. 4d6dbc6 Initial support for ps/2 mouse. by Kevin O'Connor · 16 years ago
  70. d427a3f Implement basic "eoi_jmp_post" code to post step. by Kevin O'Connor · 16 years ago
  71. 3491e8b Initial support for ATA disks. by Kevin O'Connor · 16 years ago
  72. bdce35f Misc updates. by Kevin O'Connor · 16 years ago
  73. 38fcbfe Version 0.1.2 by Kevin O'Connor · 16 years ago rel-0.1.2
  74. 4b60c00 Version 0.1.1 by Kevin O'Connor · 16 years ago rel-0.1.1
  75. f076a3e Initial checkin. by Kevin O'Connor · 16 years ago rel-0.1.0