I just finished writing a 76 byte program.
I gave my Computer Architecture midterm yesterday. One of the four problems was to predict the output of a 17 byte program. This is with an assembly language where the bulk of the instructions are three bytes. The correct answer is of course 42, once the unconditional branch is successfully mutated to an untaken conditional branch.
C1 00 07 1C E1 00 07 04 00 0E 38 00 2A 00 41 00 0A
lda adj,d
asla
sta adj,d
br skip
adj: .equate 7....

