A gitlab runner image for compiling 6502 Assembly Language (For the BBC Microcomputer System)
956
Old Meets New!
Ok, so not everyone has a 6502 machine hanging around in their attic, even fewer have them up and running in their labs/homes, however this image is for those few who still use these old machines that form the bedrock upon which the whole of modern IT is based. (Well, in my opinion, at least).
This image contains a 6502 assembler which produces a binary suitable for use as a ROM or program image.
I use this for programs for the BBC Microcomputer System but in theory it should work equally well for any 6502 based computer system.
You can use this image from your Gitlab CI as follows:
stages:
- build
build:
image: alehungate/6502-build:latest
only:
- master
- tags
stage: build
script:
- build file1.6502 bin2
- build file2.6502 bin1
artifacts:
paths:
- bin1
- bin2
expire_in: 1 week
Content type
Image
Digest
Size
66.3 MB
Last updated
almost 6 years ago
docker pull alehungate/6502-build