V420v Vas Save

x86-64 Assembler written in V

Project README

vas: Assembler written in V

CI

Supports Linux x86-64 AT&T syntax only.

Hello world!

# Hello world!

.global _start

.section .data, "aw"
msg:
  .string "Hello, world!\n"

.section .text, "ax"
_start:
  pushq %rbp
  movq %rsp, %rbp
  subq $16, %rsp

  movq $1, %rax
  movq $1, %rdi
  movq $msg, %rsi
  movq $14, %rdx
  syscall

  movq $60, %rax
  movq $0, %rdi
  syscall

$ docker build ./ -t vas

# Linux or MacOS:
$ docker run --rm -it -v "$(pwd)":/root/env vas

# Windows (CMD):
$ docker run --rm -it -v "%cd%":/root/env vas

# Windows (PowerShell):
$ docker run --rm -it -v "${pwd}:/root/env" vas

# To leave the environment, enter `exit`.

Build

$ v . -prod

Run

$ vas <filename>.s
$ ld <filename>.o
$ ./a.out

> Hello world!!

License

MIT

Open Source Agenda is not affiliated with "V420v Vas" Project. README Source: v420v/vas
Stars
95
Open Issues
2
Last Commit
5 months ago
Repository
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating