(→Postfix Code) |
|||
Line 3: | Line 3: | ||
Consider the following [[S9 (language)|S9]] function: | Consider the following [[S9 (language)|S9]] function: | ||
− | <c> | + | <source lang="c"> |
string a = "batata"; | string a = "batata"; | ||
int s9() -> 0 { | int s9() -> 0 { | ||
a! | a! | ||
} | } | ||
− | </ | + | </source> |
== Postfix Code == | == Postfix Code == | ||
Line 14: | Line 14: | ||
The Postfix code for the above function is as follows: | The Postfix code for the above function is as follows: | ||
{{CollapsedCode|Postfix code| | {{CollapsedCode|Postfix code| | ||
− | <asm> | + | <source lang="asm"> |
;--- declaring the string literal | ;--- declaring the string literal | ||
RODATA | RODATA | ||
Line 43: | Line 43: | ||
LEAVE | LEAVE | ||
RET | RET | ||
− | </ | + | </source> |
}} | }} | ||
Consider the following S9 function:
string a = "batata";
int s9() -> 0 {
a!
}
The Postfix code for the above function is as follows:
[Expand] Postfix code |
---|
To test the first example, the S9 compilation process is as follows:
s9 batata.s9 yasm -felf batata.asm ld -o batata batata.o -lrts
To test the second program directly, pf2asm can be used:
pf2asm batata.pf yasm -felf batata.asm ld -o batata batata.o -lrts