_pause.s 154 B

1234567891011
  1. .sect .text; .sect .rom; .sect .data; .sect .bss
  2. .define __pause
  3. .sect .text
  4. __pause:
  5. mov ax,29
  6. call syscal
  7. jae 1f
  8. mov (_errno),ax
  9. mov ax,-1
  10. 1:
  11. ret