| 154 | } |
| 155 | |
| 156 | static __inline void |
| 157 | PUSHL(u_int x, struct vm86frame *vmf) |
| 158 | { |
| 159 | vmf->vmf_sp -= 4; |
| 160 | vm86_suword(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp), x); |
| 161 | } |
| 162 | |
| 163 | static __inline u_short |
| 164 | POP(struct vm86frame *vmf) |
no test coverage detected