hoglet67 / AtomBusMon

This project is an open-source In-Circuit Emulator for the 6502, 65C02, Z80, 6809 and 6809E 8-bit processors. See:
https://github.com/hoglet67/AtomBusMon/wiki
GNU General Public License v3.0
99 stars 21 forks source link

Load and save the region of memory. #10

Closed xolod79 closed 4 years ago

xolod79 commented 4 years ago

There is a suggestion, add commands for load and save the region of memory through the transmission of a binary stream in the terminal program. e.g. Realterm.

obiwanjacobi commented 4 years ago

That is an excellent idea. Even better, if you can take control of the entire CPU bus, you can write software that can perform hardware tests in the system you're connected to. [2c]

hoglet67 commented 4 years ago

The current firmware includes an srec command that allows data in srecord format to be uploaded.

To download data, there is currently just the mem command, but I'm thinking of adding an srecord output command (#11)

Granted neither of these are binary, but they already exist.

In terms of scripting remote tests, the rdm, wrm, rdi and wri commands could be used to read/write memory space / IO space.

One thing that is missing is the ability to force the CPU to start executing at a given location (#12).

hoglet67 commented 4 years ago

Fixed in dev branch (firmware version 0.97)

xolod79 commented 4 years ago

Excellent! Thank you.