(→Postfix Code) |
(→The Original Code) |
||
Line 4: | Line 4: | ||
<c> | <c> | ||
− | string a = " | + | string a = "batata"; |
int s9() -> 0 { | int s9() -> 0 { | ||
a! | a! |
Consider the following S9 function:
<c> string a = "batata"; int s9() -> 0 {
a!
} </c>
The Postfix code for the above function is as follows:
<asm>
RODATA ALIGN LABEL _L123 ;; automatic label STR "ola"
DATA ALIGN LABEL a ID _L123 ;; automatic label
TEXT ALIGN GLOBL _main, FUNC LABEL _main ENTER 0
ADDRV a ;; ADDRV = ADDR+LOAD EXTRN prints CALL prints TRASH 4
INT 0 POP LEAVE RET </asm>