prefix66.asm 348 B

1234567891011121314151617181920212223242526272829
  1. ;Testname=test; Arguments=-fbin -oprefix66.bin; Files=stdout stderr prefix66.bin
  2. BITS 16
  3. cmp ax, 1
  4. o16 cmp ax, 1
  5. o32 cmp ax, 1
  6. cmp eax, 1
  7. o16 cmp eax, 1
  8. o32 cmp eax, 1
  9. BITS 32
  10. cmp ax, 1
  11. o16 cmp ax, 1
  12. o32 cmp ax, 1
  13. cmp eax, 1
  14. o16 cmp eax, 1
  15. o32 cmp eax, 1
  16. BITS 64
  17. cmp ax, 1
  18. o16 cmp ax, 1
  19. o32 cmp ax, 1
  20. cmp eax, 1
  21. o16 cmp eax, 1
  22. o32 cmp eax, 1