git @ Cat's Eye Technologies SITU-SOL / a4b652b
Missed a few spots. Chris Pressey 4 years ago
1 changed file(s) with 4 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
319319
320320 Right! So almost as soon as I finished writing the code for SITU-MON, I started entering it into the emulated Commodore 64, using the simulated front-panel switches. At first this was in dribs and drabs, a few bytes here, a few bytes there.
321321
322 ![](images/tumblr_inline_nrdfo71pHK1tvda25_540.png)
322 ![](images/tumblr_inline_nrdfo71pHK1tvda25_540.png?raw=true)
323323
324324 I won't bore you with thousands of screenshots; it all looked basically as described in _A better front-panel simulator_, above. (And for what it would look like in the physical world, watch the video on the _Loading the code_ post.) It’s not difficult, exactly, it’s just tedious and fatiguing.
325325
331331
332332 So I lowered the top of BASIC memory, and started all over again.
333333
334 ![](images/tumblr_inline_nrd1ja5mUa1tvda25_540.png)
334 ![](images/tumblr_inline_nrd1ja5mUa1tvda25_540.png?raw=true)
335335
336336 The second time doing this, at least, I was able to enter the bits much more quickly; I had had practice, and had a block of time to myself that I could dedicate to it. And when I reset the address to review the code, it was, in fact, the code I entered.
337337
351351
352352 The first routine the code calls is `WRITE_PROMPT`. In the front-panel simulator, I advanced to the `WRITE_PROMPT` routine and executed it. And I got this:
353353
354 ![](images/tumblr_inline_nrd28fzSOH1tvda25_540.png)
354 ![](images/tumblr_inline_nrd28fzSOH1tvda25_540.png?raw=true)
355355
356356 Yeah, no, that definitely wasn’t in the spec.
357357
363363
364364 I converted the address of the `OUTPUTLN_TTY` routine to decimal (33153), dropped to BASIC, and `PEEK`’ed that address to see what byte was there. The first instruction of `OUTPUTLN_TTY` is `LDA #$00`, so I was expecting to see 169 ($A9), but...
365365
366 ![](images/tumblr_inline_nrd2u9aQWY1tvda25_540.png)
366 ![](images/tumblr_inline_nrd2u9aQWY1tvda25_540.png?raw=true)
367367
368368 Noticing that the byte just _before_ `OUTPUTLN_TTY` was $81, it occurred to me: maybe I made a mistake assigning addresses to labels.
369369