6502 CPU: vasm - sjasmplus - cc65 devcontainer
266
| vasm version | latest |
| sjasm version | v1.21.0 |
| cc65 version | latest - built from source |
Custom .devcontainer that includes:
vasm6502_oldstyle if CPU_TYPE=6502 - used by Ben Eater in https://www.youtube.com/watch?v=v3-a-zqKfgAvasmz80_oldstyle if CPU_TYPE=z80vobjdumpbsdmainutils package)emulator:
name: 6502-asm-devcontainer
services:
devcontainer:
image: google85/devcontainer-asm-6502-vasm-sjasmplus-cc65:latest
hostname: devcontainer
working_dir: /usr/src/app
environment:
- TZ=Europe/Bucharest
volumes:
- ..:/usr/src/app
extra_hosts:
- "host.docker.internal:host-gateway"
tty: true
name: 6502-asm-devcontainer
services:
devcontainer:
image: 6502-asm-dev
build: .
hostname: devcontainer
working_dir: /usr/src/app
environment:
- TZ=Europe/Bucharest
volumes:
- ..:/usr/src/app
extra_hosts:
- "host.docker.internal:host-gateway"
tty: true
FROM google85/devcontainer-asm-6502-vasm-sjasmplus-cc65:latest
ENTRYPOINT [ "/bin/bash" ]
vasm -Fbin -dotdir ./bin2dec.s
# or
vasm6502_oldstyle -Fbin -dotdir ./bin2dec.s
hexdump -C ./build/main.out
Content type
Image
Digest
sha256:38dbd74f8…
Size
76.5 MB
Last updated
about 1 month ago
docker pull google85/devcontainer-asm-6502-vasm-sjasmplus-cc65