reactos/subsystems/ntvdm
Hermès Bélusca-Maïto 6da6a5ce56 [NTVDM]
Start my work on modularizing registration of "32-bit" interrupts, i.e.
interrupts that are implemented in 32-bit mode, but are stubbed with 16-bit
code (so that 16-bit apps can call them).
The 16-bit stub code uses a BOP call to our Control BOP function (BOP 0xFF) which
can handle in theory many sub-functions (as the BOP 0x58 documented here: http://www.ragestorm.net/tutorial?id=27)
specified as an additional BYTE in the call:
0xC4 0xC4 bop_code <optional_bop_subfunction>
Here, for calling 32-bit interrupts we use our BOP 0xFF, subfunction 0xFF.
The final aim would be to generate the 16-bit stub code when one calls the RegisterInt32 helper function
(contrary to what's happening now, that is, the 16-bit stub code is generated for all of the interrupts
at BIOS initialization time, and we use it for BIOS and DOS interrupts).

svn path=/branches/ntvdm/; revision=60907
2013-11-09 22:15:40 +00:00
..
bios.c [NTVDM] 2013-11-09 22:15:40 +00:00
bios.h [NTVDM] 2013-11-09 22:15:40 +00:00
bop.c [NTVDM] 2013-11-09 22:15:40 +00:00
bop.h [NTVDM] 2013-11-09 22:15:40 +00:00
CMakeLists.txt [NTVDM] 2013-11-03 21:33:22 +00:00
cmos.c [NTVDM] 2013-11-03 21:33:22 +00:00
cmos.h [NTVDM] 2013-11-03 21:33:22 +00:00
dos.c [NTVDM] 2013-11-09 22:15:40 +00:00
dos.h [NTVDM] 2013-11-09 22:15:40 +00:00
emulator.c [NTVDM] 2013-11-09 22:15:40 +00:00
emulator.h [NTVDM] 2013-11-09 22:15:40 +00:00
ntvdm.c [NTVDM]: Improve DisplayMessage by also displaying the message in the debug log. 2013-11-09 15:53:52 +00:00
ntvdm.h [NTVDM] 2013-11-03 20:31:19 +00:00
ntvdm.rc [NTVDM] 2013-06-17 00:00:36 +00:00
ntvdm.spec [NTVDM] 2013-08-09 23:52:08 +00:00
pic.c [FAST486] 2013-10-27 00:37:01 +00:00
pic.h [FAST486] 2013-10-27 00:37:01 +00:00
ps2.c [NTVDM] 2013-11-03 21:52:58 +00:00
ps2.h [FAST486] 2013-10-27 00:37:01 +00:00
registers.c [NTVDM] 2013-10-26 20:48:31 +00:00
registers.h [NTVDM] 2013-08-09 23:52:08 +00:00
resource.h [NTVDM] 2013-06-17 00:00:36 +00:00
rsrc.rc [NTVDM] 2013-06-17 00:00:36 +00:00
speaker.c [NTVDM] 2013-11-03 20:31:19 +00:00
speaker.h [NTVDM] 2013-11-03 20:31:19 +00:00
timer.c [NTVDM] 2013-11-03 20:31:19 +00:00
timer.h [NTVDM] 2013-11-03 20:31:19 +00:00
vga.c [NTVDM] 2013-11-08 21:56:30 +00:00
vga.h [NTVDM] 2013-11-08 21:56:30 +00:00