mirror of
https://github.com/Candygoblen123/SwiftNES.git
synced 2024-11-09 14:36:24 -06:00
8 lines
184 B
Swift
8 lines
184 B
Swift
|
// The Swift Programming Language
|
||
|
// https://docs.swift.org/swift-book
|
||
|
|
||
|
let cpu = CPU()
|
||
|
let program: [UInt8] = [0xa9, 0xc0, 0xaa, 0xe8, 0x00]
|
||
|
cpu.loadAndRun(program)
|
||
|
print(cpu.status)
|