SwiftNES/Sources/main.swift

8 lines
184 B
Swift
Raw Normal View History

2024-05-10 22:06:45 -05:00
// 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)