sim65 is used as part of the toolchain to test 6502 or 65C02 code.
The binary to test should be compiled with --target sim6502
or --target sim65c02
.
The simulator is called as follows:
Usage: sim65 [options] file [arguments]
Short options:
-h Help (this text)
-c Print amount of executed CPU cycles
-v Increase verbosity
-V Print the simulator version number
-x <num> Exit simulator after <num> cycles
Long options:
--help Help (this text)
--cycles Print amount of executed CPU cycles
--verbose Increase verbosity
--version Print the simulator version number
Here is a description of all the command line options:
-h, --help
Print the short option summary shown above.
-c, --cycles
Print the number of executed CPU cycles when the program terminates.
The cycles for the final "jmp exit
" are not included in this
count.
-v, --verbose
Increase the simulator verbosity.
-V, --version
Print the version number of the utility. When submitting a bug report, please include the operating system you're using, and the compiler version.
-x num
Exit simulator after num cycles.
The simulator will read one binary file per invocation and can log the program loading and paravirtualization calls to stderr.
Example output for the command
sim65 --verbose --verbose samples/gunzip65
Loaded 'samples/gunzip65' at $0200-$151F
PVWrite ($0001, $13C9, $000F)
GZIP file name:PVWrite ($0001, $151F, $0001)
PVRead ($0000, $FFD7, $0001)
PVOpen ("", $0001)
PVRead ($0003, $1520, $6590)
PVClose ($0003)
PVWrite ($0001, $13D9, $000F)
Not GZIP formatPVWrite ($0001, $151F, $0001)
PVExit ($01)
For a C test compiled and linked with --target sim6502
the
command line arguments to sim65
will be passed to main
,
and the return value from main
will become sim65's exit code.
The exit
function may also be used to terminate with an exit code.
Exit codes are limited to 8 bits.
The standard C library high level file input and output is functional, and can be used like a command line application in sim65.
Lower level file input and output is provided by a set of built-in paravirtualization functions:
int open (const char* name, int flags, ...);
int __fastcall__ close (int fd);
int __fastcall__ read (int fd, void* buf, unsigned count);
int __fastcall__ write (int fd, const void* buf, unsigned count);
These built-in functions can be used with
STDIN_FILENO
, STDOUT_FILENO
and STDERR_FILENO
which are mapped to sim65's corresponding file descriptors.
Assembly tests may similarly be assembled and linked with
--target sim6502
or --target sim65c02
,
and the sim65 library provides an exit
symbol that the program may JMP
to terminate with the current A register value as an exit code.
The binary file has a 12 byte header:
$73, $69, $6D, $36, $35
or 'sim65'
2
0
= 6502, 1
= 65C02
sp
used by the paravirtualization functions
$0200
)
$0200
)
Other internal details:
$FFFC
will be
pre-loaded with the given reset address.
exit
address is $FFF9
.
Jumping to this address will terminate execution with the A register value as an exit code.
IRQ
and NMI
events will not be generated, though BRK
can be used if the IRQ vector at $FFFE
is manually prepared by the test code.
sim65 (and all cc65 binutils) are (C) Copyright 1998-2000 Ullrich von Bassewitz. For usage of the binaries and/or sources the following conditions do apply:
This software is provided 'as-is', without any expressed or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: