summaryrefslogtreecommitdiff
path: root/test-suite/standalone/sassy/tests/prims16/16with-win-lose2.scm
blob: 748e8cae1bb1f73c434b5d7a523bdd6a26c85111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(bits 16)

(text
 (with-win-lose foo bar
		(while (= ax 3)
		       (seq (nop)
			    (nop)
			    l!)))
 (seq (nop) (nop) (nop))
 (label foo (ret))
 (label bar (ret)))

; 00000000  EB06              jmp short 0x8
; 00000002  90                nop
; 00000003  90                nop
; 00000004  0F8D0C00          jnl near 0x14
; 00000008  3D0300            cmp ax,0x3
; 0000000B  74F5              jz 0x2
; 0000000D  E90300            jmp 0x13
; 00000010  90                nop
; 00000011  90                nop
; 00000012  90                nop
; 00000013  C3                ret
; 00000014  C3                ret