A minimalist 6502 ROM monitor
Go to file
Seth Morabito fccda1da6b
Merge pull request #1 from domesticmouse/patch-1
Tidying up markdown links
2018-07-03 07:20:07 -07:00
.gitignore Initial Checkin 2014-07-01 18:13:21 -07:00
COPYING Initial Checkin 2014-07-01 18:13:21 -07:00
Makefile Initial Checkin 2014-07-01 18:13:21 -07:00
README.md Tidying up markdown links 2018-07-03 16:50:51 +10:00
basic.asm First pass at integrating BASIC 2014-07-27 13:50:37 -07:00
monitor.asm Full BASIC support 2014-07-27 15:32:32 -07:00
symon.config Console output 2014-07-03 15:55:57 -07:00

README.md

Loomcom 6502 ROM Monitor

Version: 1.0

Last Updated: July 27, 2014

1.0 About

This project contains an experimental 6502 ROM monitor being developed for the Symon 6502 Simulator and associated hardware.

2.0 Assembly

Assembled with CA65. Just type make!

3.0 To Do

  • Enhance the 'E' and 'D' commands to take '/' as the first argument, which will automatically increment the previously used Examine or Deposit address. e.g.:
     *D 0300 01   ; Deposit "01" to 0x0300
     *D / 02      ; Deposit "02" to 0x0301
     *D / 03      ; Deposit "03" to 0x0302

4.0 License

This project is free software. It is distributed under the MIT License. Please see the file 'COPYING' for full details of the license.

5.0 Acknowledgements

Enhanced 6502 BASIC (EhBASIC, contained entirely in the file "basic.asm") is Version 2.22, and is copyright (c) Lee Davison. It is distributed for non-commercial use only!