diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-08-17 11:11:07 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-08-17 11:11:07 -0400 |
commit | cbffa8ed98f0e87d7c926594fe73f6e56e86da5f (patch) | |
tree | 050b7c3075dab750c57947de6b0e2d406a681234 /src/system.c | |
parent | cde7a58def4231f26d1dd53909067a143fa9eaab (diff) | |
download | seabios-cbffa8ed98f0e87d7c926594fe73f6e56e86da5f.tar.gz |
Add stubs for VIA vga bios callbacks to system bios.
The VIA vga bios likes wants to call int 15/5f of main bios. So, add
stubs to make it happy.
Diffstat (limited to 'src/system.c')
-rw-r--r-- | src/system.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/system.c b/src/system.c index 05fb9068..2e19efa6 100644 --- a/src/system.c +++ b/src/system.c @@ -318,6 +318,7 @@ handle_15(struct bregs *regs) case 0x4f: handle_154f(regs); break; case 0x52: handle_1552(regs); break; case 0x53: handle_1553(regs); break; + case 0x5f: handle_155f(regs); break; case 0x83: handle_1583(regs); break; case 0x86: handle_1586(regs); break; case 0x87: handle_1587(regs); break; |