Skip to content

Monty interpreter: An interpreter to perform Monty ByteCodes files. Made in C language.

Notifications You must be signed in to change notification settings

valen2510/monty

Repository files navigation

Monty

📝 Description

Monty 0.98 is a scripting language that is first compiled into Monty byte codes (Just like Python). It relies on a unique stack, with specific instructions to manipulate it. The goal of this project is to create an interpreter for Monty ByteCodes files.

📚 Monty byte code file

Files containing Monty byte codes usually have the .m extension. Most of the industry uses this standard but it is not required by the specification of the language. There is not more than one instruction per line. There can be any number of spaces before or after the opcode and its argument:

monty]\--> cat -e bytecodes/000.m
push 0$
push 1$
push 2$
  push 3$
                   pall    $
push 4$
    push 5    $
      push    6        $
pall$
monty]\-->

Monty byte code files can contain blank lines (empty or made of spaces only, and any additional text after the opcode or its required argument is not taken into account:

monty]\--> cat -e bytecodes/001.m
push 0 Push 0 onto the stack$
push 1 Push 1 onto the stack$
$
push 2$
  push 3$
                   pall    $
$
$
                           $
push 4$
$
    push 5    $
      push    6        $
$
pall This is the end of our program. Monty is awesome!$
monty]\-->

⭐️ Compilation

$ gcc -Wall -Werror -Wextra -pedantic *.c -o monty

🚀 Usage

$ ./monty bytecode_file

✨ Project Opcode functions

Opcode Description
push Pushes an element to the stack.
pall Prints all the values on the stack, starting from the to of the stack.
pint Prints the value at the top of the stack.
pop Removes the to element of the stack.
swap Swaps the top to elements of the stack.
nop This opcode does not do anything.
sub Subtracts the top two elements of the stack from the second top element. The result is then stored in the second node, and the first node is removed.
div Divides the top two elements of the stack from the second top element. The result is then stored in the second node, and the first node is removed.
mul Multiplies the top two elements of the stack from the second top element. The result is then stored in the second node, and the first node is removed.
mod Computes the remainder of the top two elements of the stack from the second top element. The result is then stored in the second node, and the first node is removed.
pchar Prints the integer stored in the top of the stack as its ascii value representation.
pstr Prints the integers stored in the stack as their ascii value representation. It stops printing when the value is 0, when the stack is over and when the value of the element is a non-ascii value.
rotl Rotates the top of the stack to the bottom of the stack.
rotr Rotates the bottom of the stack to the top of the stack.
queue Sets the format of the data into a queue.
stack Sets the format of the data into a stack.

✍ Example

Monty byte code file:

monty]\--> cat -e bytecodes/00.m
push 1$
push 2$
push 3$
pall$

Output:

monty]\--> ./monty bytecodes/00.m
3
2
1
monty]\-->

🤝 Contributors


twitter_page linkedin_page medium_page

Medellin - Colombia

September, 2020.

About

Monty interpreter: An interpreter to perform Monty ByteCodes files. Made in C language.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages