The Google dinosaur game ported to the NES
Run build.bat, the result will be in the build folder
- Install the ca65 Macro Assembler Language Support addon for VSCode
- Install the Alchemy65 addon for VSCode
- Install the CC65 compiler
- Install MesenX
Each of the installed programs should be added to your path
Press F5 to debug
- Write a comment for every line of assembly
- Use snake_case for processes, macros and variables
- Use camelCase for labels
- Use UPPER_CASE for "preprocessor" definitions
- Prefix macros with m_
- Write a comment above every process / macro stating its purpose and usage
- Use UPPERCASE for the instructions
- Use a tab inside a process
- Use a tab inside a macro
- Use a tab inside a label (labels within processes are then double tabbed)