mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
test: nasm-t -- Add struc test
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
4272eb4508
commit
1fe16a00ab
31
travis/test/struc.asm
Normal file
31
travis/test/struc.asm
Normal file
@ -0,0 +1,31 @@
|
||||
bits 32
|
||||
|
||||
; Simple struc example
|
||||
struc teststruc1
|
||||
.long: resd 1
|
||||
.word: resw 1
|
||||
.byte: resb 1
|
||||
.str: resb 32
|
||||
endstruc
|
||||
|
||||
; Reference with offset
|
||||
mov [ebp - 40 + teststruc1.word], ax
|
||||
|
||||
istruc teststruc1
|
||||
at .word, db 5
|
||||
iend
|
||||
|
||||
; Struc with base offset
|
||||
; should be the same as the previous stuc
|
||||
struc teststruc2, -40
|
||||
.long: resd 1
|
||||
.word: resw 1
|
||||
.byte: resb 1
|
||||
.str: resb 32
|
||||
endstruc
|
||||
|
||||
mov [ebp + teststruc2.word], ax
|
||||
|
||||
istruc teststruc2
|
||||
at .word, db 5
|
||||
iend
|
BIN
travis/test/struc.bin.t
Normal file
BIN
travis/test/struc.bin.t
Normal file
Binary file not shown.
12
travis/test/struc.json
Normal file
12
travis/test/struc.json
Normal file
@ -0,0 +1,12 @@
|
||||
[
|
||||
{
|
||||
"description": "Check structure compilation",
|
||||
"id": "struc",
|
||||
"format": "bin",
|
||||
"source": "struc.asm",
|
||||
"option": "",
|
||||
"target": [
|
||||
{ "output": "struc.bin" }
|
||||
]
|
||||
}
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user