blob: 5b928b02a1a188979e786da3813be379f2a86477 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# Evaluator common. This common handles the code counter and the code
# buffer used by the code generator routines during an expression
# code generation.
int cp # next free instruction
pointer code # RPN code buffer
common /prcodecom/ cp, code
|