代码搜索:OUT
找到约 10,000 项符合「OUT」的源代码
代码结果 10,000
www.eeworm.com/read/395929/2428964
out exists.out
;exists macro arg1,arg2
; ifne ==arg2
; move arg1,arg2
; elsec
; push arg1
; endc
; endm
;
; exists foo,bar
; ifne -1
; move foo,bar
move foo,bar
; elsec
; push foo
; endc
; exists foo
; ifne 0
; mo
www.eeworm.com/read/395929/2428965
out narg.out
;loop macro arg1,arg2,arg3
; dc.l NARG
; ifne NARG
; dc.l arg1
; loop arg2,arg3
; endc
; endm
;
; loop 1,2,3
; dc.l 3
dc.l 3
; ifne 3
; dc.l 1
dc.l 1
; loop 2,3
; dc.l 2
dc.l 2
; ifne 2
; dc.l 2
www.eeworm.com/read/395929/2428967
out embed.out
;embed macro label
;addr&&label dc.l label
; endm
;
; embed foo
;addrfoo dc.l foo
addrfoo: dc.l foo
;
www.eeworm.com/read/395929/2428968
out irp.out
; irp param,arg1,arg2,arg3
; dc.l param
; endr
dc.l arg1
dc.l arg2
dc.l arg3
; end quit
end quit
www.eeworm.com/read/395929/2428972
out irpc.out
; irpc dummy,1234
; dc.l dummy
; endr
dc.l 1
dc.l 2
dc.l 3
dc.l 4
;
www.eeworm.com/read/395929/2428974
out rep.out
! .AREPEAT 5
! FIVE
! .AREPEAT 2
! TWO
! .AENDR
! .AREPEAT 3
! THREE
! .AREPEAT 2
! TWO
! .AENDR
! .AENDR
! .AENDR
! FIVE
FIVE
! .AREPEAT 2
! TWO
! .AENDR
! TWO
TWO
! .AREPEAT 1
! TWO
! .AENDR
! TW
www.eeworm.com/read/395929/2428975
out data.out
!
!foo .DATA 1,2,3
foo: .long 1,2,3
!bar .DATA 1,2,3,4,5 ,6
bar: .long 1,2,3,4,5,6
! .DATA.B 12345,12,2
.byte 12345,12,2
! .DATA.W 9,2,12,3,13+41,foo+9
.short 9,2,12,3,54,foo+9
! .DATA.L 2~99
.lon
www.eeworm.com/read/395929/2428984
out sdata.out
!
!
! .SDATA "HI","STEVE"
.byte 72,73,83,84,69,86,69
! .SDATA "HI" , "STEVE" , ,,
.byte 72,73,83,84,69,86,69,72,73,83,69,86,69
!
! .SDATA "H""I" , "STEVE" , ,,
www.eeworm.com/read/395929/2428986
out mdouble.out
!
! .MACRO HI
! A
! \! this is hidden
! B
! ! this is not
! C
! .ENDM
! Hello
Hello
! HI
! A
A
!
! B
B
! ! this is not
! this is not
! C
C
! Emily
Emily
!
!
! H'0f
15
! 200+H'0F
200+15
!
www.eeworm.com/read/395929/2428999
out macro.out
! .MACRO SUM FROM=0, TO=9
! ; \FROM \TO
! MOV R\FROM,R10
!COUNT .ASSIGNA \FROM+1
! .AWHILE \&COUNT LE \TO
! MOV R\&COUNT,R10
!COUNT .ASSIGNA \&COUNT+1
! .AENDW
! .ENDM
!
! SUM 0,5
! ; 0 5
; 0 5
! MO