|
Chapter 4 - 13 January 2013
I think Hack CPU architecture can be considered RISK type. Before that I programmed for 8086 which is CISC type. I have two-fold feeling about Hack assembler: on one hand it is very cumbersome to do even simple things (e.g. to perform a base+offset addressing one needs 6 instructions here: @base, D=M, @20, D=D+A, A=D, D=M; whereas in 8086 this is a single instruction) but on the other hand it is very easy and fast to learn to program on this CPU. All in all, I guess it is much easier to write compilers for RISK architectures, so normally no one will write assembler code by hand on RISK processors because compilers should be much better at that.
[Mult.asm]:
I did multiplication first by finding the products of the form R1 * 2^i (where i varies from 0 to 7) and then adding only the powers of 2 where bits in R0's representation are equal to 1. Had to adjust the test file because my implementation of multiplication takes at most ~550 cycles (127*127 ~550 cycles, 6 * 7 ~ 450 cycles). I wonder how they determine the running time in 80x86 CPU, because it depends on the value of the numbers. Probably the upper bound is taken, which means some CPU cycles are always wasted on those CPUs => could be a reason why RISK processors are considered to consume less power...
[Fill.asm]:
Had a puzzling bug which caused sometimes the screen not to be cleared after releasing the key. It seems that I was writing past the final screen memory which happens to be the keyboard memory map. Probably the internal implementation of the keyboard listener doesn't write 0 into KBD at each cycle but only on key press / key release combinations so that overwritten value was not erased causing the screen not be erased. As a fun variation of this exercise one can write the keycode of the character repeatedly on the screen to get different patterns. Also typing several characters in quick succession yields different patterns.
Looking forward to chapter 5, which hopefully will clarify the PC architecture at the hardware level.
|