mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 08:31:11 +00:00
Abbreviated uses of enumerations.
This commit is contained in:
parent
21d0602305
commit
a3dafa9056
@ -27,7 +27,7 @@ class BCDTest: XCTestCase, CSTestMachine6502JamHandler {
|
|||||||
machine.setValue(0x03, forAddress:0x204)
|
machine.setValue(0x03, forAddress:0x204)
|
||||||
machine.setValue(0x02, forAddress:0x205)
|
machine.setValue(0x02, forAddress:0x205)
|
||||||
|
|
||||||
machine.setValue(0x200, for: CSTestMachine6502Register.programCounter)
|
machine.setValue(0x200, for: .programCounter)
|
||||||
|
|
||||||
machine.setValue(CSTestMachine6502JamOpcode, forAddress:0xffee) // OSWRCH
|
machine.setValue(CSTestMachine6502JamOpcode, forAddress:0xffee) // OSWRCH
|
||||||
machine.setValue(CSTestMachine6502JamOpcode, forAddress:0xffff) // end of test
|
machine.setValue(CSTestMachine6502JamOpcode, forAddress:0xffff) // end of test
|
||||||
@ -45,7 +45,7 @@ class BCDTest: XCTestCase, CSTestMachine6502JamHandler {
|
|||||||
|
|
||||||
switch address {
|
switch address {
|
||||||
case 0xffee:
|
case 0xffee:
|
||||||
let character = machine.value(for: CSTestMachine6502Register.A)
|
let character = machine.value(for: .A)
|
||||||
output.append(Character(UnicodeScalar(character)!))
|
output.append(Character(UnicodeScalar(character)!))
|
||||||
|
|
||||||
machine.returnFromSubroutine()
|
machine.returnFromSubroutine()
|
||||||
|
Loading…
Reference in New Issue
Block a user