Coder Social home page Coder Social logo

monty's Introduction

monty

Stacks, Queues - LIFO, FIFO

monty

This directory contains all the tasks of the project "C - Stacks, Queues - LIFO, FIFO" at ALX /Holberton School

Table of Contents

Description
Opcodes
Respository Files Description
Usage Examples
Getting Started
Prerequisits
Built With - Compilation
Authors
License
Acknowledgments

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.

Our monty works as a interpreter for Monty ByteCodes files. 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:

user@ubuntu:/monty$ cat -e bytecodes/000.m push 0$ push 1$ push 2$ push 3$ pall $ push 4$ push 5 $ push 6 $ pall$ user@ubuntu:/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:

user@ubuntu:/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!$ user@ubuntu:/monty$

Opcodes opcode Description

push

Pushes an element to the stack.

pall

Prints all the values on the stack, starting from the top of the stack.

pint

Prints the value at the top of the stack, followed by a new line.

pop

Removes the top element of the stack.

swap

Swaps the top two elements of the stack.

add

Adds the top two elements of the stack.

nop

Doesn't do anything.

sub

Subtracts the top element of the stack from the second top element of the stack.

div

Divides the second top element of the stack by the top element of the stack.

mul

Multiplies the second top element of the stack with the top element of the stack.

mod

Computes the rest of the division of the second top element of the stack by the top element of the stack.

pchar

Prints the char at the top of the stack, followed by a new line.

pstr

Prints the string starting at the top of the stack, followed by a new line.

rotl

Rotates the stack to the top.

rotr

Rotates the stack to the bottom.

stack

Sets the format of the data to a stack (LIFO). This is the default behavior of the program.

queue

Sets the format of the data to a queue (FIFO).

Respository Files Description File Description monty.h Header file containing all the functions prototypes, structs and standard C libraries included monty_main.c Core of the program - Handle all the conections. monty_run.c Function that reads the standard input and stores the info. errors.c Function that splits a string into tokens. README.md Readme file with all the information need to run monty interpreter Usage Examples push / pall:

user@ubuntu:/monty$ cat -e bytecodes/00.m push 1$ push 2$ push 3$ pall$ user@ubuntu:/monty$ ./monty bytecodes/00.m 3 2 1 user@ubuntu:~/monty$

pint:

user@ubuntu:/monty$ cat bytecodes/06.m push 1 pint push 2 pint push 3 pint user@ubuntu:/monty$ ./monty bytecodes/06.m 1 2 3 user@ubuntu:~/monty$

Getting Started

Clone this repository to get all the files you need to run this version of "monty" on your machine. Each part needed to make this interpreter works is in a single and a separete file, so you can connect and trace all the steps of the function and you can make your own changes and upgrades. Prerequisites

This program was made and tested using Ubuntu 14.04.3 LTS and compiled with gcc 4.8.4. We recommend you to test this interpreter under this conditions. Built With - Compilation

Ubuntu 14.04.3 LTS Running on a Virtual Machine "Vagrant"
gcc 4.8.4 Compiled with the flags: -Wall -Werror -Wextra -pedantic *.c -o monty
GNU Emacs 24.3.1

AUTHORS

Olanike Ogundiran - Github @NikkyXO
John Mzee - GitHub @Mzee1991

License

Opensource project.

monty's People

Contributors

nikkyxo avatar mzee1991 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.