~ppsspp/ppsspp/ppsspp_1.3.0

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.psx
.create "output.bin", 0

start:
.area 20h,1
	.word 0
.endarea

end:

.if (end-start) != 20h
	.error "Area content not filled"
.endif

.close