Sign inSign up

google85/devcontainer-asm-6502-vasm-sjasmplus-cc65

By google85

•Updated about 1 month ago

6502 CPU: vasm - sjasmplus - cc65 devcontainer

Image
Developer tools
1

266

google85/devcontainer-asm-6502-vasm-sjasmplus-cc65 repository overview

⁠6502 CPU: vasm - sjasmplus - cc65 devcontainer

vasm versionlatest
sjasm versionv1.21.0
cc65 versionlatest - built from source

Custom .devcontainer that includes:

⁠Compose file:
  • direct:
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

⁠

  • using custom Dockerfile based on this image:
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
  • Dockerfile:
FROM google85/devcontainer-asm-6502-vasm-sjasmplus-cc65:latest

ENTRYPOINT [ "/bin/bash" ]

⁠

⁠Usage:
  • VsCode: Open/Reopen in container
vasm -Fbin -dotdir ./bin2dec.s
# or
vasm6502_oldstyle -Fbin -dotdir ./bin2dec.s

hexdump -C ./build/main.out

Tag summary

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