| 170 | } |
| 171 | |
| 172 | static __inline u_int |
| 173 | POPL(struct vm86frame *vmf) |
| 174 | { |
| 175 | u_int x = vm86_fuword(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp)); |
| 176 | |
| 177 | vmf->vmf_sp += 4; |
| 178 | return (x); |
| 179 | } |
| 180 | |
| 181 | int |
| 182 | vm86_emulate(struct vm86frame *vmf) |
no test coverage detected