Compare commits

..

No commits in common. "0c43aaf858fde8f220fc7a1220b740ac5c59a201" and "4153232a85ae77454eff57472ea9fe6667edf6cc" have entirely different histories.

5 changed files with 2 additions and 49 deletions

1
.github/FUNDING.yml vendored
View file

@ -1 +0,0 @@
github: rick-gnous

View file

@ -1,9 +0,0 @@
# Set update schedule for GitHub Actions
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every weekday
interval: "daily"

View file

@ -1,27 +0,0 @@
name: Test-MSX
on:
push:
branches:
- 'main'
- 'master'
- 'dev'
paths-ignore:
- '**/README.md'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
image:
name: Test-MSX
runs-on: ubuntu-20.04
steps:
- name: "📥 Checkout Code"
uses: actions/checkout@v2.3.4
with:
submodules: 'recursive'
fetch-depth: 0
- name: "🛠️ Build"
run: make docker

View file

@ -1,15 +1,5 @@
CC=sjasmplus
DOCKER=docker
CFLAGS=
SRCS = $(wildcard *.asm)
OBJ = $(patsubst %.asm,%,$(SRCS))
all: $(OBJ)
$(OBJ):
%:
$(CC) $@.asm --raw=$@.rom
docker:
$(DOCKER) pull bensuperpc/sjasmplus:latest
$(DOCKER) run --rm -v "$(PWD)":/usr/src/myapp -w /usr/src/myapp bensuperpc/sjasmplus:latest make all

View file

@ -6,6 +6,6 @@ Le compilateur [SJASMplus](https://github.com/z00m128/sjasmplus) est utilisé af
sjasmplus hello.asm --raw=hello.rom
```
Il est aussi possible dutiliser le Makefile avec la commande `make <nom programme>`; pour le helloworld par exemple : `make hello`. La commande `make` compilera tous les fichiers .asm.
Il est aussi possible dutiliser le Makefile avec la commande `make <nom programme>`; pour le helloworld par exemple : `make hello`.
Je m'appuie sur [les tutos de Chibiakumas](https://www.chibiakumas.com/z80/msx.php) pour lécriture des différents programmes.