mirror of https://github.com/yasm/yasm.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
147 B
19 lines
147 B
23 years ago
|
[extern blah]
|
||
|
data
|
||
|
db 4
|
||
|
|
||
|
mov ax, seg data
|
||
|
|
||
|
mov ax, data wrt 0
|
||
|
|
||
|
mov ax, blah
|
||
|
|
||
|
mov bx, [seg data]
|
||
|
|
||
|
mov bx, [data wrt 0]
|
||
|
|
||
|
resb 1
|
||
|
|
||
|
[section .bss]
|
||
|
db 5
|