diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-09-24 21:01:16 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-09-24 21:01:16 -0400 |
commit | f8e800dea4aad59c83254bddd8e9ccfcd3b45774 (patch) | |
tree | 44673b259d1dede47648e58f2aeac1352893ca4f /src/post.c | |
parent | f416fe97ae885e97a4c9678813a6005aa83fb4b6 (diff) | |
download | seabios-f8e800dea4aad59c83254bddd8e9ccfcd3b45774.tar.gz |
Interrupts should be enabled when calling 16bit code.
Set most code paths to have interrupts on when calling 16bit code.
This fixes at least one optionrom that needed irqs on.
Diffstat (limited to 'src/post.c')
-rw-r--r-- | src/post.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -227,5 +227,6 @@ _start() dprintf(3, "Jump to int19\n"); struct bregs br; memset(&br, 0, sizeof(br)); + br.flags = F_IF; call16_int(0x19, &br); } |