chiark / gitweb /
When it said 'do not check in', it meant it
authorThomas Thurman <tthurman@gnome.org>
Sat, 6 Nov 2010 13:27:55 +0000 (09:27 -0400)
committerThomas Thurman <tthurman@gnome.org>
Sat, 6 Nov 2010 13:27:55 +0000 (09:27 -0400)
src/opnames.cpp [deleted file]

diff --git a/src/opnames.cpp b/src/opnames.cpp
deleted file mode 100644 (file)
index 40a1998..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-// Generated file.  Do not edit.  Do not check in.
-
-typedef enum _Op {
-  OP_ADC,  // 
-  OP_AND,  // 
-  OP_ASL,     // Arithmetic shift left
-  OP_BCC,     // Branch on carry clear
-  OP_BCS,     // Branch on carry set
-  OP_BEQ,     // Branch on equal
-  OP_BIT,  // 
-  OP_BMI,     // Branch on minus.
-  OP_BNE,     // Branch on not equal
-  OP_BPL,     // Branch on plus.
-  OP_BRK,  // 
-  OP_BVC,     // Branch on overflow clear.
-  OP_BVS,     // Branch on overflow set.
-  OP_CLC,     // Clear carry
-  OP_CLD,     // Clear decimal
-  OP_CLI,     // Clear interrupt
-  OP_CLV,     // Clear overflow
-  OP_CMP,   // Compare
-  OP_CPX,  // Compare X
-  OP_CPY,  // Compare Y
-  OP_DEC,  // Decrement
-  OP_DEX,   // Decrement X
-  OP_DEY,   // Decrement Y
-  OP_EOR,  // 
-  OP_INC,  // Increment
-  OP_INX,   // Increment X
-  OP_INY,   // Increment Y
-  OP_JMP,  // 
-  OP_JSR,  // 
-  OP_LDA,     // Load accumulator.
-  OP_LDX,     // Load X.
-  OP_LDY,     // Load Y.
-  OP_LSR,  // 
-  OP_NOP,  // 
-  OP_ORA,  // 
-  OP_PHA,  // 
-  OP_PHP,  // 
-  OP_PLA,  // 
-  OP_PLP,  // 
-  OP_ROL,  // Rotate left
-  OP_ROR,   // Rotate right
-  OP_RTI,  // 
-  OP_RTS,  // 
-  OP_SBC,  // 
-  OP_SEC,     // Set carry
-  OP_SED,     // Set decimal
-  OP_SEI,     // Set interrupt
-  OP_STA,  // 
-  OP_STX,  // 
-  OP_STY,  // 
-  OP_TAX,   // Transfer A to X
-  OP_TAY,   // Transfer A to Y
-  OP_TSX,     // Transfer stack to X
-  OP_TXA,   // Transfer X to A
-  OP_TXS,     // Transfer X to stack
-  OP_TYA,   // Transfer Y to A
-
-  OP_XXX // Fallback
-} Op;
-
-QString opnames =
-  "ADC "
-  "AND "
-  "ASL "
-  "BCC "
-  "BCS "
-  "BEQ "
-  "BIT "
-  "BMI "
-  "BNE "
-  "BPL "
-  "BRK "
-  "BVC "
-  "BVS "
-  "CLC "
-  "CLD "
-  "CLI "
-  "CLV "
-  "CMP "
-  "CPX "
-  "CPY "
-  "DEC "
-  "DEX "
-  "DEY "
-  "EOR "
-  "INC "
-  "INX "
-  "INY "
-  "JMP "
-  "JSR "
-  "LDA "
-  "LDX "
-  "LDY "
-  "LSR "
-  "NOP "
-  "ORA "
-  "PHA "
-  "PHP "
-  "PLA "
-  "PLP "
-  "ROL "
-  "ROR "
-  "RTI "
-  "RTS "
-  "SBC "
-  "SEC "
-  "SED "
-  "SEI "
-  "STA "
-  "STX "
-  "STY "
-  "TAX "
-  "TAY "
-  "TSX "
-  "TXA "
-  "TXS "
-  "TYA "
-  "XXX ";