File: strucsize.asm

package info (click to toggle)
yasm 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 12,200 kB
  • ctags: 18,827
  • sloc: asm: 73,479; ansic: 48,942; sh: 9,773; python: 8,913; xml: 1,108; makefile: 147; pascal: 62; sed: 16
file content (23 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
struc TST1
    .a resd 2
endstruc

struc TST2
    .b resb TST1_size
endstruc

tst2:
istruc TST2
at TST2.b

	istruc TST1

	at TST1.a
		dd 1, 2

	iend

iend

dw TST1_size
dw TST2_size