mirror of https://github.com/yasm/yasm.git
parent
a74a807bba
commit
970e89dbee
6 changed files with 28 additions and 0 deletions
@ -0,0 +1,6 @@ |
||||
%define foo 5 |
||||
%define bar baz |
||||
mov ax, [foo+bar] |
||||
%define baz bzzt |
||||
%define bzzt 9 |
||||
mov ax, baz+bar |
@ -0,0 +1,5 @@ |
||||
%line 3+1 ./src/preprocs/yapp/tests/ddefine.asm |
||||
mov ax, [5+baz] |
||||
|
||||
|
||||
mov ax, 9+9 |
@ -0,0 +1,6 @@ |
||||
%define foo 5 |
||||
%define bar baz |
||||
mov ax, [foo+bar] |
||||
%define baz bzzt |
||||
%define bzzt 9 |
||||
mov ax, baz+bar |
@ -0,0 +1,5 @@ |
||||
%line 3+1 ./src/preprocs/yapp/tests/ddefine.asm |
||||
mov ax, [5+baz] |
||||
|
||||
|
||||
mov ax, 9+9 |
Loading…
Reference in new issue