A cross-assembler for the 6502 series of microprocessors.
Go to file
Michael Martin 60f03a34af Improvements to c64_0.oph startup/teardown code
16 additional bytes from the zero page are now available; the ZP
locations from $02-$8F are now free for your program's use.

Approximately 128 additional bytes in main RAM are now available,
giving you free reign from $0800-$CFFF. Zero Page backup is now
handled underneath the KERNAL's ROM, with the program epilogue
safely handling swapping out the KERNAL for the duration of the
switch. (IRQs are disabled, and NMI handling code is replicated
and modified to not hurt anything.)

Program exit is now handled by keyboard buffer and jumping
through BASIC's warm reset vector. This technique lets programs
play more nicely with PUCRUNCH and onefilers (which otherwise
often confused BASIC as the BASIC prologue would change as part
of decompression or link-loading).
2014-05-14 07:33:07 -07:00
bin Exit with exit code 1 if there were errors, 0 otherwise. 2012-10-25 10:51:39 +01:00
doc Bump minor version number and copyright dates 2014-03-22 22:09:11 -07:00
examples packaging for 2.0 release 2012-06-13 00:24:21 -07:00
platform Improvements to c64_0.oph startup/teardown code 2014-05-14 07:33:07 -07:00
src Refactor the label mapper to be more like the lister. 2014-05-14 05:56:59 -07:00
tests remove LF added during conflict resolution. 2014-03-23 16:55:04 +10:30
vendor Win32 installer. 2012-05-30 08:32:52 -07:00
.gitattributes Remind git about binary files and not to mangle them. 2012-06-12 19:11:34 -07:00
.gitignore Win32 installer. 2012-05-30 08:32:52 -07:00
README update readme to indicate 4502 support 2014-02-07 20:55:19 +10:30

Ophis is a cross-assembler for the 65xx series of chips. It supports
the stock 6502 opcodes, the 65c02 extensions, experimental support
for the 4502/4510 used in the Commodore 65 prototypes, and syntax for
the "undocumented opcodes" in the 6510 chip used on the Commodore
64. (Syntax for these opcodes matches those given in the VICE team's
documentation.) 

Ophis is written in pure Python and should be highly portable.

It is provided under the MIT license, reproduced below:

---

Ophis, Copyright (C) 2002-2014 Michael Martin and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.