| 147 | } |
| 148 | |
| 149 | static __inline void |
| 150 | PUSH(u_short x, struct vm86frame *vmf) |
| 151 | { |
| 152 | vmf->vmf_sp -= 2; |
| 153 | vm86_suword16(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp), x); |
| 154 | } |
| 155 | |
| 156 | static __inline void |
| 157 | PUSHL(u_int x, struct vm86frame *vmf) |
no test coverage detected