11 lines
293 B
NASM
11 lines
293 B
NASM
; ~~~ Auto generated by the GroundPY compiler for Linux x86_64 targets. ~~~
|
|
|
|
section .data
|
|
section .text
|
|
global _start
|
|
_start:
|
|
; LabelDecleration
|
|
.myLabel:
|
|
; InstructionNode(instruction='jump', parent=RootNode(statements=[LabelDecleration, ...]), arguments=[LabelReference])
|
|
jmp .myLabel
|
|
|