gbdev / gb-asm-tutorial

Learn to create games for the Game Boy using Assembly
http://gbdev.io/gb-asm-tutorial/
MIT License
100 stars 31 forks source link

Misleading Entry Point 'main.asm' and 'xor' line preventing compilation #90

Open LaroldsJubilantJunkyard opened 2 months ago

LaroldsJubilantJunkyard commented 2 months ago

Two issues pointed out by @bpf on the gbdev/asm-rgbds channel.

  1. The 'main.asm' file is not the actual entrypoint, but that might be confusing for a lot of people. the actual entry point is the src/main/GalacticArmada.asm file. Code snippets should be adjusted to reflect this.
  2. Getting an error of syntax error, unexpected newline in the enemies.asm file. There's a naked xor statement (no registers specified)

The discord messages for reference: