2018-03-04 František Kučera use alias declaration instead of a typedef default tip
2017-12-28 František Kučera do not pass by reference arguments of small types
2017-12-27 František Kučera write() don't need return value
2017-12-25 František Kučera not needed in destructor: memory = nullptr;
2017-12-25 František Kučera parametric memory size
2017-12-25 František Kučera memory: rename, refactor
2017-12-24 František Kučera rename memory.h to Memory.h
2017-12-24 František Kučera wrap memory in a class
2017-12-23 František Kučera comments, formatting
2017-12-23 František Kučera license: GNU GPLv3+
2017-12-23 František Kučera move standard commands (codes) to a header file
2017-12-23 František Kučera parametric INCREMENT and DECREMENT
2017-12-23 František Kučera INCREMENT and DECREMENT in class
2017-12-23 František Kučera GOTO_COMPARE in class
2017-12-23 František Kučera COLOR in class
2017-12-23 František Kučera END in class
2017-12-23 František Kučera SLEEP in class
2017-12-23 František Kučera GOTO in class
2017-12-23 František Kučera move memory functions to a header file + introduce Command classes
2017-12-23 František Kučera move typedefs to a header file
2017-12-23 František Kučera check memory bounds in read() and write()
2017-12-23 František Kučera index in read() and write() is in same units as memory type
2017-12-22 František Kučera comment, rename, reformat
2017-12-22 František Kučera GOTO_COMPARE
2017-12-22 František Kučera INCREMENT, DECREMENT
2017-12-22 František Kučera documentation + LED position
2017-12-22 František Kučera local variables inside switch
2017-12-21 František Kučera debug output formatting
2017-12-21 František Kučera COLOR
2017-12-21 František Kučera template / generic write() function
2017-12-21 František Kučera template / generic read() function
2017-12-21 František Kučera malloc + free
2017-12-21 František Kučera SLEEP
2017-12-21 František Kučera commands in hexadecimal
2017-12-21 František Kučera writeAddress()
2017-12-21 František Kučera GOTO
2017-12-21 František Kučera use malloc instead of an array (the memory contains sequence of various types so typed array makes no sense)
2017-12-21 František Kučera increment index in th read function
2017-12-21 František Kučera first version