Skip to content

Commit

Permalink
Reverted GETGLOB/SETGLOB changes, will make separate PR for it
Browse files Browse the repository at this point in the history
  • Loading branch information
Shvandre committed Jan 5, 2025
1 parent cb04388 commit f72899b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/codepage/opcodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1155,11 +1155,11 @@ CP0Auto.insertHex('F83C', 16, { code: 'GETFORWARDFEESIMPLE' });

CP0Auto.insertHex('f841', 11, (slice) => {
let i = slice.loadUint(5);
return { code: `GETGLOB`, args: [i] };
return { code: `GETGLOBVAR`, args: [i] };
});
CP0Auto.insertHex('f861', 11, (slice) => {
let i = slice.loadUint(5);
return { code: `SETGLOB`, args: [i] };
return { code: `SETGLOBVAR`, args: [i] };
});
CP0Auto.insertHex('f900', 16, { code: 'HASHCU' });
CP0Auto.insertHex('f901', 16, { code: 'HASHSU' });
Expand Down

0 comments on commit f72899b

Please sign in to comment.