-
We already have a disassembler, so we should go all the way.
-
After doing a "git pull upstream master" I can't run Tali in py65mon:
```
$ py65mon -m 65c02 -r taliforth-py65mon.bin
Reset with new MPU 65C02
PC AC XR YR SP NV-BDIZC
65C02: 0000 00…
-
-
Before we add an assembler and editor, we should probably add the mechanics for dealing with vocabularies. In ANS Forth, this is handled by the Search-Order word set (https://forth-standard.org/standa…
-
Because the output routine is a vector, and because it could technically be redirected to a word written in Forth that uses the TMP1 variable, TYPE should push/pop TMP1 around the jsr to emit_a (which…
-
So, now it is reproducible. Depending on the sequence of tests, the suite crashes at the same place:
```
: ifsym compiled
[ -3 2 / -1 = invert ] literal if postpone \ then ; ok
ok
\ the sy…
-
@SamCoVT wrote in a different issue: "Shouldn't COMPILE_COMMA be flagged NN? It has an absolute jump in it, so if it were native compiled, the new version would jump back into the old version in the _…
-
In docs/ch_developing.tex, starting on line 37 are instructions for cloning and installing Ophis. I believe the cd command on line 38 is incorrect. It currently says:
```
git clone https://githu…
-
Possibly based on the code for testing -- send word / line of input with word to py65, starting the timer, and then stop it when we receive a result. Repeat x times and average. Would be very crude, b…
-
I hacked Kegs (a 2gs emulator) to work with essentially all kinds of apple2 roms. As you can guess, the Apple IIc+ was the most difficult to get to work. I found your project while researching the MIG…