From 3ad7fb010f5d501c2dc9948f98775891ccedd70c Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Thu, 27 Aug 2020 21:09:59 +0200 Subject: [PATCH] clearer about emulator --- compiler/src/prog8/CompilerMain.kt | 2 +- docs/source/building.rst | 2 +- docs/source/index.rst | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/src/prog8/CompilerMain.kt b/compiler/src/prog8/CompilerMain.kt index de61eafad..ca61230d2 100644 --- a/compiler/src/prog8/CompilerMain.kt +++ b/compiler/src/prog8/CompilerMain.kt @@ -36,7 +36,7 @@ fun pathFrom(stringPath: String, vararg rest: String): Path = FileSystems.getDe private fun compileMain(args: Array) { val cli = CommandLineInterface("prog8compiler") - val startEmulator by cli.flagArgument("-emu", "auto-start the Vice C-64 emulator after successful compilation") + val startEmulator by cli.flagArgument("-emu", "auto-start emulator after successful compilation") val outputDir by cli.flagValueArgument("-out", "directory", "directory for output files instead of current directory", ".") val dontWriteAssembly by cli.flagArgument("-noasm", "don't create assembly code") val dontOptimize by cli.flagArgument("-noopt", "don't perform any optimizations") diff --git a/docs/source/building.rst b/docs/source/building.rst index 7b7fbe291..0e2c6d898 100644 --- a/docs/source/building.rst +++ b/docs/source/building.rst @@ -83,7 +83,7 @@ For normal use the compiler is invoked with the command: By default, assembly code is generated and written to ``sourcefile.asm``. It is then (automatically) fed to the `64tass `_ cross assembler tool that assembles it into the final program. -If you use the option to let the compiler auto-start a C-64 emulator, it will do so after +If you use the option to let the compiler auto-start an emulator, it will do so after a successful compilation. This will load your program and the symbol and breakpoint lists (for the machine code monitor) into the emulator. diff --git a/docs/source/index.rst b/docs/source/index.rst index 3a3b763a1..c121eb00a 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -178,6 +178,7 @@ Fnd for Windows it's possible to get that as well. Check out `AdoptOpenJDK `_. +If you're targeting the CommanderX16, there's the `x16emu `_. .. important:: **Building the compiler itself:** (*Only needed if you have not downloaded a pre-built 'fat-jar'*)