Jelly have a change in signals for fake ALU eeprom.
Now the low byte address is the argument and high byte address is the operation.
Only unary math are allowed, and using address A08, A09, A10, the operations are:
high byte (page) | operation | example |
---|---|---|
000 | clear | (00011011 => 00000000) |
100 | increase | (00011011 => 00011100) |
010 | decrease | (00011011 => 00011010) |
110 | copy | (00011011 => 00011011) |
001 | negate | (00011011 => 11100100) |
101 | shift left | (00011011 => 00110110) |
011 | shift right | (00011011 => 00001101) |
111 | mirror | (00011011 => 11011000) |
Only clear, increase, decrease and copy are current in Jelly.
PS. mirror is reverse bit order, as from little endian into big endian and vice-versa.
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.