Code Monkey home page Code Monkey logo

abstractvm's Introduction

AbstractVM

Required

  • Build-essential
  • Make

What is AbstractVM ?

AbstractVM is a stack machine that evaluates simple arithmetic expressions. These expressions are supplied to the machine by programs written in a language similar to the assembler.

Instructions

Instruction Description
push "Value" Push the value "Value"
pop Pop a value from the top of the stack
add Pop two values a and b, calculate the sum b + a, and push the result into the stack
sub Pop two values a and b, calculate the difference b - a, and push the result into the stack
mul Pop two values a and b, calculate the product b * a, and push the result into the stack
div Pop two values a and b, calculate the quotient b / a, and push the result into the stack
mod Pop two values a and b, calculate the modulo b % a, and push the result into the stack
assert "Value" Check if the top value of the stack is equal to "Value"
dump Pritnt all the content of the stack
print Check if the top value of the stack is of int8 type, and print the corresponding ASCII code
exit Exit the program

Types

  • int8
  • int16
  • int32
  • float
  • double

Example AVM File

File test.avm:

; exemple.avm
push int32(42)
push int32(33)
add
push float(44.55)
mul
push double(42.42)
push int32(42)
pop
assert double(42.42)
pop
dump
exit

Build and Run

  • $> export LD_LIBRARY_PATH=.
  • $> make
  • $> ./abstractvm <file.avm>

abstractvm's People

Contributors

habi-a avatar franck-crtx avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.