From 001d01fdaf6c26efc310a1ec2eb25f7ac1aa8039 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sun, 21 Feb 2021 22:45:23 +0100 Subject: [PATCH] slight tweak to 64tass .cpu to enable wdc65c02 variant on cx16 with its extra opcodes --- compiler/src/prog8/compiler/target/c64/codegen/AsmGen.kt | 2 +- docs/source/todo.rst | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/src/prog8/compiler/target/c64/codegen/AsmGen.kt b/compiler/src/prog8/compiler/target/c64/codegen/AsmGen.kt index 20948e277..81744a2ec 100644 --- a/compiler/src/prog8/compiler/target/c64/codegen/AsmGen.kt +++ b/compiler/src/prog8/compiler/target/c64/codegen/AsmGen.kt @@ -96,7 +96,7 @@ internal class AsmGen(private val program: Program, val ourName = this.javaClass.name val cpu = when(compTarget.machine.cpu) { CpuType.CPU6502 -> "6502" - CpuType.CPU65c02 -> "65c02" + CpuType.CPU65c02 -> "w65c02" else -> "unsupported" } diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 1ae85cc85..b06803e8d 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -3,7 +3,6 @@ TODO ==== - rename kernel -> kernal -- add sys.halt() that is smart on the 65c02 - add sound to the cx16 tehtriz - add const arrays and cost strings