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.
10 lines
121 B
10 lines
121 B
19 years ago
|
label:
|
||
|
mov [label/2+1], ax
|
||
|
mov ax, label*2
|
||
|
mov [label+5], ax
|
||
|
mov ax, label wrt foo
|
||
|
foo:
|
||
|
dd label
|
||
|
dd label<<5
|
||
|
dd label>>2
|