Added prefix C_ to the names prolog, jump, and locals

This commit is contained in:
ceriel
1989-01-26 14:04:11 +00:00
parent e6fb2468c8
commit 817facac14
8 changed files with 28 additions and 28 deletions

View File

@@ -1249,17 +1249,17 @@ C_df_ilb ==> clean_push_buf();
set_local_visible( $1).
#endif
jump ==> "jmp $1".
C_jump ==> "jmp $1".
prolog ==> "push bp";
"mov bp, sp".
C_prolog ==> "push bp";
"mov bp, sp".
locals
$1 == 0 ==> .
C_locals
$1 == 0 ==> .
$1 == 2 ==> "push ax".
$1 == 2 ==> "push ax".
$1 == 4 ==> "push ax";
"push ax".
$1 == 4 ==> "push ax";
"push ax".
default ==> "sub sp, $1".
default ==> "sub sp, $1".