diff options
Diffstat (limited to 'main.ha')
| -rw-r--r-- | main.ha | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -20,4 +20,12 @@ export fn main() void = { bios::regs.ecx = 0; bios::regs.edx = 5 << 8 | 5; bios::call(0x10); + bios::regs.eax = 0x2 << 8; + bios::regs.ebx = 0; + bios::regs.edx = 0 << 8 | 0; + bios::call(0x10); + bios::regs.eax = 0x9 << 8 | 'A': u16; + bios::regs.ebx = 0 << 8 | 0xd; + bios::regs.ecx = 8; + bios::call(0x10); }; |
