64位栈式虚拟机

Mistivia 4188f79178 finish analyzer há 1 semana atrás
assembler 3e6bf6091c simplify asm language há 3 meses atrás
examples 0f310a7f7b modify docs há 3 meses atrás
scripts 789ebeb7d0 finish project framework há 4 meses atrás
src 4188f79178 finish analyzer há 1 semana atrás
tests 4188f79178 finish analyzer há 1 semana atrás
.gitignore 3e6bf6091c simplify asm language há 3 meses atrás
LICENSE 39f1c73025 add license há 4 meses atrás
Makefile 48f36f7041 add complete op list há 2 semanas atrás
README.md 0f310a7f7b modify docs há 3 meses atrás

README.md

Fantasy Virtual Machine

A 64-bit stack-based virtual machine and its assembler, created for fun.

Build

FVM includes two parts: the virtual machine and the assembler.

The build the assembler, you need to intall CHICKEN Scheme first.

For example, on Arch Linux:

sudo pacman -S chicken

Then install CHICKEN Scheme dependencies:

sudo chicken-install matchable srfi-69 srfi-4

Then run make, which will build both components:

make

If successful, you will see two executables, the virtual machine fvm and the assembler fvm-as.

Run

After writing the assembly code (examples can be found in the examples/ directory), first run the assembler:

./fvm-as input.asm bytecode.bin

This will generate the bytecode file output.bin. Then run the virtual machine:

./fvm bytecode.bin

Registers

FVM contains 4 registers:

  • SP: stack pointer
  • BP:base pointer
  • PC:program counter
  • RV: returned value

There are no general-purpose registers; all operations happen on the stack.

Opcodes

All opcodes are single-byte, except for immediate value instructions.

See src/fvm.h for a full list of opcodes.