David Johnston
David Johnston
I tried to generate a list of generator polynomials. It worked except for the t=1 cases. Specifically: (n,k,t) (7,4,1) (15,11,1) (31,26,1) (63,57,1), (255,247,1) (511,502,1), (1023,1013,1) # ./bch.py gen 7 4...
The parser is getting out of hand. It's hand coded. It needs a proper lexical analyzer and parser structure to wrestle control of it. Currently I'm playing with some of...
The code currently support the intelhex format, which is possibly the least nice format of the usual suspects. Let's add some more output formats. Straight Ascii Hex Straight Binary Motorola...
The 6502 has vector locations for reset, NMI and BRK/IRQ. Let's add utility routines to read and write the vector locations. asm6502.setvector_reset(self, address) asm6502.setvector_nmi(self, address) asm6502.setvector_irq(self, address) asm6502.getvector_reset(self) --> int...
[scrolltest.txt](https://github.com/nsf/termbox/files/405265/scrolltest.txt) I found my termbox based program was quitting when scrolling with the touchpad on a macbook. I traced this to the program receiving ESCs while scrolling, when it should...