Compare commits

...

2 commits

Author SHA1 Message Date
rick 87d2d813ab
feat(gitignore): fichiers inutiles 2021-06-01 14:26:25 +02:00
rick ccc8fd7737
feat: Makefile 2021-06-01 14:25:25 +02:00
3 changed files with 9 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.lst
*.rom

5
Makefile Normal file
View file

@ -0,0 +1,5 @@
CC=sjasmplus
CFLAGS=
%:
$(CC) $@.asm --raw=$@.rom

View file

@ -6,4 +6,6 @@ Le compilateur SJASMplus est utilisé afin de compiler les fichiers et [OpenMSX]
sjasmplus hello.asm --raw=hello.rom
```
Il est aussi possible dutiliser le Makefile avec la commande `make hello`.
Je m'appuie sur [le tuto de Chibiakumas](https://www.chibiakumas.com/z80/helloworld.php#LessonH3) pour le Hello worl.