Compare commits
10 Commits
addwfInstr
...
clrfInstru
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a21d9256f | ||
|
|
ab9f378d34 | ||
|
|
b23bf4c54b | ||
|
|
7eab465fff | ||
|
|
c896b4f199 | ||
|
|
46515de5f1 | ||
|
|
49ab5876b8 | ||
|
|
1f8e3aff58 | ||
|
|
c7d062cffd | ||
|
|
7af1145ad4 |
@@ -12,11 +12,9 @@ class Main
|
||||
public static void main(String[] args) {
|
||||
|
||||
ArrayList<Command> program = new ArrayList<>();
|
||||
int input1 = 0x27FF;
|
||||
program.add(CommandDecoder.decode(0x3011)); //Write 0x11 to W
|
||||
Memory.setRegister(0x14, 0x14);
|
||||
program.add(CommandDecoder.decode(0x0714));
|
||||
for(int i = 0; i < 2; i++)
|
||||
Memory.setRegister(0x14, 0xFF);
|
||||
program.add(CommandDecoder.decode(0x0194));
|
||||
for(int i = 0; i < program.size(); i++)
|
||||
{
|
||||
program.get(ProgramCounter.getPc()).execute();
|
||||
}
|
||||
|
||||
27
de/darkress/pic16f84sim/commands/Andwf.java
Normal file
27
de/darkress/pic16f84sim/commands/Andwf.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Andwf extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Andwf(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = checkDestinationBit(input);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
int result = Memory.getRegister(address) & Memory.workingRegister;
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result);
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
27
de/darkress/pic16f84sim/commands/Clrf.java
Normal file
27
de/darkress/pic16f84sim/commands/Clrf.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Clrf extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Clrf(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
final int result = 0;
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result);
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
18
de/darkress/pic16f84sim/commands/Clrw.java
Normal file
18
de/darkress/pic16f84sim/commands/Clrw.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Clrw extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
final int result = 0;
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
Memory.workingRegister = result;
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
27
de/darkress/pic16f84sim/commands/Comf.java
Normal file
27
de/darkress/pic16f84sim/commands/Comf.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Comf extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Comf(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = checkDestinationBit(input);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
int result = 255 - Memory.getRegister(address); // Get inverse of 8Bit value
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result);
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
27
de/darkress/pic16f84sim/commands/Decf.java
Normal file
27
de/darkress/pic16f84sim/commands/Decf.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Decf extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Decf(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = checkDestinationBit(input);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
int result = Memory.getRegister(address) + 255; // Allow underflow
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result % 256); // Catch underflow
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
33
de/darkress/pic16f84sim/commands/Decfsz.java
Normal file
33
de/darkress/pic16f84sim/commands/Decfsz.java
Normal file
@@ -0,0 +1,33 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Decfsz extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Decfsz(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = checkDestinationBit(input);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
int result = Memory.getRegister(address) + 255; // Allow underflow
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result % 256); // Catch underflow
|
||||
|
||||
if((result % 256) == 0)
|
||||
{
|
||||
Nop nop = new Nop();
|
||||
nop.execute();
|
||||
}
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
27
de/darkress/pic16f84sim/commands/Incf.java
Normal file
27
de/darkress/pic16f84sim/commands/Incf.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Incf extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Incf(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = checkDestinationBit(input);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
int result = Memory.getRegister(address) + 1; // Allow underflow
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result % 256); // Catch underflow
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
33
de/darkress/pic16f84sim/commands/Incfsz.java
Normal file
33
de/darkress/pic16f84sim/commands/Incfsz.java
Normal file
@@ -0,0 +1,33 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.Memory;
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Incfsz extends FileRegisterCommandUtils implements Command
|
||||
{
|
||||
private final int address;
|
||||
private final boolean destinationBit;
|
||||
|
||||
public Incfsz(int input)
|
||||
{
|
||||
address = input & 0x007F;
|
||||
destinationBit = checkDestinationBit(input);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
int result = Memory.getRegister(address) + 1;
|
||||
|
||||
checkZeroBit(result);
|
||||
|
||||
writeToDestination(destinationBit, address, result % 256);
|
||||
|
||||
if((result % 256) == 0)
|
||||
{
|
||||
Nop nop = new Nop();
|
||||
nop.execute();
|
||||
}
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
14
de/darkress/pic16f84sim/commands/Nop.java
Normal file
14
de/darkress/pic16f84sim/commands/Nop.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package de.darkress.pic16f84sim.commands;
|
||||
|
||||
import de.darkress.pic16f84sim.microcontroller.ProgramCounter;
|
||||
|
||||
public class Nop extends LiteralCommandUtils implements Command
|
||||
{
|
||||
|
||||
@Override
|
||||
public void execute()
|
||||
{
|
||||
// Do nothing, just increment the PC
|
||||
ProgramCounter.incPC();
|
||||
}
|
||||
}
|
||||
@@ -11,23 +11,17 @@ public class CommandDecoder
|
||||
case 0x700:
|
||||
return new Addwf(input);
|
||||
case 0x500:
|
||||
//andwf();
|
||||
break;
|
||||
return new Andwf(input);
|
||||
case 0x900:
|
||||
//comf();
|
||||
break;
|
||||
return new Comf(input);
|
||||
case 0x300:
|
||||
//decf();
|
||||
break;
|
||||
return new Decf(input);
|
||||
case 0xB00:
|
||||
//decfsz();
|
||||
break;
|
||||
return new Decfsz(input);
|
||||
case 0xA00:
|
||||
//incf();
|
||||
break;
|
||||
return new Incf(input);
|
||||
case 0xF00:
|
||||
//incfsz();
|
||||
break;
|
||||
return new Incfsz(input);
|
||||
case 0x400:
|
||||
//iorwf();
|
||||
break;
|
||||
@@ -60,11 +54,9 @@ public class CommandDecoder
|
||||
switch(input & 0x3F80)
|
||||
{
|
||||
case 0x180:
|
||||
//clrf();
|
||||
break;
|
||||
return new Clrf(input);
|
||||
case 0x100:
|
||||
//clrw();
|
||||
break;
|
||||
return new Clrw();
|
||||
case 0x80:
|
||||
//movwf();
|
||||
break;
|
||||
@@ -114,7 +106,7 @@ public class CommandDecoder
|
||||
|
||||
if ((input | 0x0060) == 0x0060)
|
||||
{
|
||||
//nop();
|
||||
return new Nop();
|
||||
}
|
||||
|
||||
if (input == 0x0064)
|
||||
|
||||
Reference in New Issue
Block a user