Renamed setPcForGotoCall function to setPcFrom11BitLiteral

This commit is contained in:
Darkress
2023-05-30 01:18:51 +02:00
parent 3eaf697306
commit 022dd499ce
5 changed files with 5 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ public class ProgramCounter
return pc;
}
public static void setPcForGotoCall(int data)
public static void setPcFrom11BitLiteral(int data)
{
int pcl = data & 0x00FF;
int pch = Memory.getPCLATH();