- [FIX] si el canal està desactivat, no fer el envelope sweep - [FIX] Se miraba el bit incorrecte per a determinar si el envelope sweep anava amunt o avall
12 lines
140 B
Makefile
12 lines
140 B
Makefile
compile:
|
|
g++ -g *.cpp -lSDL2 -o gb
|
|
|
|
run: compile
|
|
./gb tetris.gb
|
|
|
|
debug: compile
|
|
gdb --args gb tetris.gb
|
|
|
|
debug1: compile
|
|
gdb -ex run gb
|