1
0
mirror of https://github.com/pevans/erc-c.git synced 2026-04-24 05:20:59 +00:00

Add new Branch Always instruction

This commit is contained in:
Peter Evans
2018-02-21 21:57:21 -06:00
parent 58a1e31f58
commit f9a277e7bc
7 changed files with 25 additions and 3 deletions
+1
View File
@@ -77,6 +77,7 @@ enum instruction {
BMI, // Branch on MInus
BNE, // Branch on Not Equal to zero
BPL, // Branch on PLus
BRA, // BRanch Always
BRK, // BReaK (interrupt)
BVC, // Branch on oVerflow Clear
BVS, // Branch on oVerflow Set
+1
View File
@@ -186,6 +186,7 @@ DECL_INST(bim);
DECL_INST(bmi);
DECL_INST(bne);
DECL_INST(bpl);
DECL_INST(bra);
DECL_INST(brk);
DECL_INST(bvc);
DECL_INST(bvs);