mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-24 06:45:11 +00:00
Use Keep modes for byte and short literals
This commit is contained in:
parent
8132a09e21
commit
6f872feff5
1 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ findopcode(char *s)
|
|||
static void
|
||||
pushbyte(Uint8 b, int lit)
|
||||
{
|
||||
if(lit) pushbyte(findopcode("LIT"), 0);
|
||||
if(lit) pushbyte(findopcode("LITk"), 0);
|
||||
p.data[p.ptr++] = b;
|
||||
p.length = p.ptr;
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ pushbyte(Uint8 b, int lit)
|
|||
static void
|
||||
pushshort(Uint16 s, int lit)
|
||||
{
|
||||
if(lit) pushbyte(findopcode("LIT2"), 0);
|
||||
if(lit) pushbyte(findopcode("LIT2k"), 0);
|
||||
pushbyte((s >> 8) & 0xff, 0);
|
||||
pushbyte(s & 0xff, 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue