1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-06-12 23:29:32 +00:00

Added issue 139,140

Andy McFadden 2023-02-01 17:05:31 -08:00
parent 4234e6ea2a
commit b8859620fa

@ -165,6 +165,9 @@ Contents:
defaults when formatting strings. Add a shortcut to make selection
and formatting of strings easier.
(See https://github.com/fadden/6502bench/issues/70)
* Generalize the max-byte-per-line feature, so it can apply to things other
than densely-packed-bytes (e.g. strings).
See https://github.com/fadden/6502bench/issues/140
* Streamline instruction operand editor: don't open a separate dialog
to edit a line label. Maybe just show the operand target line and
invite them to update the label in place?
@ -305,6 +308,10 @@ Contents:
### Code Analysis ###
* Add an "isolated region" checkbox to the address region editor. Factor it
into the address-to-offset calculation to allow for code that gets uploaded
to a place with a separate address space.
https://github.com/fadden/6502bench/issues/139
* Finish W65C02 support (currently ignores the ZP arg for BBR/BBS).
* Add support for the HuC6280 CPU, used in the TurboGrafx-16.
(See https://github.com/fadden/6502bench/issues/106 )