diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-07-26 17:59:00 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-07-26 17:59:00 +0000 |
commit | 8f186479e26e8207520c062248642153826d5cde (patch) | |
tree | c0b1d04576bb2444b39296c1b144c758dd285f78 /op-i386.c | |
parent | 4c3a88a284b288e0ed3c097de7fc07111d848003 (diff) |
real mode support (now boots from BOCHS BIOS and LGPL'ed VGA BIOS)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@333 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'op-i386.c')
-rw-r--r-- | op-i386.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -953,6 +953,11 @@ void OPPROTO op_ljmp_T0_T1(void) jmp_seg(T0 & 0xffff, T1); } +void OPPROTO op_iret_real(void) +{ + helper_iret_real(PARAM1); +} + void OPPROTO op_iret_protected(void) { helper_iret_protected(PARAM1); |