-
Notifications
You must be signed in to change notification settings - Fork 50
Description
I just built the the rc2014 emulator from sources. I invoke the emulator as follows:
./rc2014 -s -r ~/git/rc2014/ROMs/Factory/24886009.BIN -e 1
I then type the following line into BASIC:
10 FOR Y=0 TO 24:FOR X=0 TO 79:PRINT ".";:NEXT:PRINT:NEXT
This should dump 2000 dots to the screen. However, when I RUN
the program, nothing appears on the console. I tried it with and without the -f option.
Intermittently, upon typing the ENTER
key, a single line of dots will appear. Typing random characters on the keyboard has a similar effect, with the exception of when I mash multiple keys, it appears to break (as though I'd typed CTRL-C) the program instead.
If I happen to have some text in the X11 paste buffer and paste it into the console window, the whole interface just deadlocks after accepting the first character.
I was hoping to use this emulator to develop some Z80 Zed software interactively, but I will absolutely need the ability to paste code into the terminal; likewise, I will absolutely need it to dump entire screens to the console as well. It's not clear to me if I'm doing something wrong, or if there's more debugging of the emulator code that needs to happen. Is there any advice you can offer that will help resolve this issue?
Thanks for your time.