aboutsummaryrefslogtreecommitdiff
path: root/space/include
Commit message (Collapse)AuthorAgeFilesLines
* Small code style cleanupsMiquel Sabaté Solà2025-03-111-2/+0
| | | | Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Move macros globallyMiquel Sabaté Solà2025-02-041-22/+22
| | | | | | | | | | | | | | | It's a pity that cl65 allows macros to be written inside of scopes while their usage is only possible from the global scope. Hence, by allowing programmers to write macros inside of scopes, it feels like 'cc65' is actually lying to programmers. 'nasm' double downs on this by simply refusing to assemble such a case, which is the sensible thing to do if it's not allowed anyways. Long story short, macro statements have to be written in the global scope and so this commit moves the READ_CONTROLLER one from the `space` example globally. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Lay out a proper structure for the projectMiquel Sabaté Solà2025-02-044-0/+109
Let's divide things by topic instead of a broad "examples" directory. This will allow for simple files to co-exist together with full-blown projects. Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>