Renamed intr to iret to match 8086 mnemnonics

This commit is contained in:
Brent O'Neil 2017-12-30 08:29:53 +11:00
parent ff4a3d6f20
commit 974b00aa7a
2 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public class CPU implements JSONSerialisable {
instructionSet.add(new JnoInstruction(this));
instructionSet.add(new JoInstruction(this));
instructionSet.add(new IntInstruction(this));
instructionSet.add(new IntrInstruction(this));
instructionSet.add(new IretInstruction(this));
status = new Status();
memory = new Memory(config.getInt("memory_size"));