Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Monty 0.98 is a scripting language that is first compiled into Monty byte codes (Just like Python)

NotificationsYou must be signed in to change notification settings

micahondiwa/monty

Repository files navigation

Technologies

  • Files written invi,vim, andemacs editors.
  • C files compiled usinggcc 9.4.0.
  • C files wriiten according to the betty coding style. Checked usingbetty-style.pl andbetty-doc.pl.
  • Files tested onUbuntu 20.04 LTS usinggcc.
  • Outpus are printed onstdout
  • Error messages printed onstderr

The Monty language

  • 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.

A. Monty byte code 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
  • 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.

B. The monty program

  • Usage:monty file
    • where file is the path to the file containing Monty byte code.

Compilation

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

Run

$ ./monty monty_file.m5712

Interpreter Synopsis

$ ./monty [montyfilename]$
  • If the user does not give any file or more than one argument to your program, print the error messageUSAGE: monty file, followed by a new line, and exit with the statusEXIT_FAILURE
  • If, for any reason, it’s not possible to open the file, print the error messageError: Can't open file <file>, followed by a new line, and exit with the statusEXIT_FAILURE.
    • where<file> is the name of the file.
  • If the file contains an invalid instruction, print the error messageL<line_number>: unknown instruction <opcode>, followed by a new line, and exit with the statusEXIT_FAILURE
    • where is the line number where the instruction appears.
    • Line numbers always start at 1
  • The monty program runs the bytecodes line by line and stop if either:
    • it executed properly every line of the file
    • it finds an error in the file
    • an error occured
  • If you can’t malloc anymore, the program prints the error messageError: malloc failed, followed by a new line, and exit with statusEXIT_FAILURE.

C. Opcodes

  1. pint
  • The opcodepint prints the value at the top of the stack, followed by a new line.

Usage:pint

  • If the stack is empty, print the error messageL<line_number>: can't pint, stack empty, followed by a new line, and exit with the statusEXIT_FAILURE
  • Example:
micahondiwa@ubuntu:~/monty$ cat bytecodes/06.m push 1pintpush 2pintpush 3pintmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/06.m 123micahondiwa@ubuntu:~/monty$
  1. pop
  • The opcodepop removes the top element of the stack.

Usage:pop

  • If the stack is empty, print the error messageL<line_number>: can't pop an empty stack, followed by a new line, and exit with the statusEXIT_FAILURE
  • Example:
micahondiwa@ubuntu:~/monty$ cat bytecodes/07.m push 1push 2push 3pallpoppallpoppallpoppallmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/07.m 321211micahondiwa@ubuntu:~/monty$
  1. swap
  • The opcodeswap swaps the top two elements of the stack.

Usage:swap

  • If the stack contains less than two elements, print the error messageL<line_number>: can't swap, stack too short, followed by a new line, and exit with the statusEXIT_FAILURE-Example:
micahondiwa@ubuntu:~/monty$ cat bytecodes/09.m push 1push 2push 3pallswappallmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/09.m 321231micahondiwa@ubuntu:~/monty$
  1. add
  • The opcodeadd adds the top two elements of the stack.

Usage:add

  • If the stack contains less than two elements, print the error messageL<line_number>: can't add, stack too short, followed by a new line, and exit with the statusEXIT_FAILURE-The result is stored in the second top element of the stack, and the top element is removed, so that at the end:

    • The top element of the stack contains the result
    • The stack is one element shorter
  • Example:

micahondiwa@ubuntu:~/monty$ cat bytecodes/12.m push 1push 2push 3palladdpallmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/12.m 3215micahondiwa@ubuntu:~/monty$
  1. nop
  • The opcodenop doesn’t do anything!

Usage:nop

  1. sub
  • The opcodesub subtracts the top element of the stack from the second top element of the stack.

Usage:sub

  • If the stack contains less than two elements, print the error messageL<line_number>: can't sub, stack too short, followed by a new line, and exit with the statusEXIT_FAILURE
  • The result is stored in the second top element of the stack, and the top element is removed, so that at the end:
    • The top element of the stack contains the result
    • The stack is one element shorter
  • Example:
micahondiwa@ubuntu:~/monty$ cat bytecodes/19.m push 1push 2push 10push 3subpallmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/19.m 721
  1. div
  • The opcodediv divides the second top element of the stack by the top element of the stack.

Usage:div

  • If the stack contains less than two elements, print the error messageL<line_number>: can't div, stack too short, followed by a new line, and exit with the statusEXIT_FAILURE
  • The result is stored in the second top element of the stack, and the top element is removed, so that at the end:
    • The top element of the stack contains the result
    • The stack is one element shorter
  • If the top element of the stack is0, print the error messageL<line_number>: division by zero, followed by a new line, and exit with the statusEXIT_FAILURE
  1. mul
  • The opcode ```mul`` multiplies the second top element of the stack with the top element of the stack.

Usage:mul

  • If the stack contains less than two elements, print the error messageL<line_number>: can't mul, stack too short, followed by a new line, and exit with the statusEXIT_FAILURE.
  • The result is stored in the second top element of the stack, and the top element is removed, so that at the end:
    • The top element of the stack contains the result
    • nThe stack is one element shorter
  1. mod
  • The opcodemod computes the rest of the division of the second top element of the stack by the top element of the stack.

Usage:mod

  • If the stack contains less than two elements, print the error messageL<line_number>: can't mod, stack too short, followed by a new line, and exit with the statusEXIT_FAILURE.
  • The result is stored in the second top element of the stack, and the top element is removed, so that at the end:
    • The top element of the stack contains the result
    • The stack is one element shorter
  • If the top element of the stack is 0, print the error message L<line_number>: division by zero, followed by a new line, and exit with the status EXIT_FAILURE
  1. pchar
  • The opcodepchar prints the char at the top of the stack.

  • Usage:pchar

  • The integer stored at the top of the stack is treated as the ascii value of the character to be printed

  • If the value is not in the ascii table (man ascii) print the error messageL<line_number>: can't pchar, value out of range, followed by a new line, and exit with the statusEXIT_FAILURE

  • If the stack is empty, print the error messageL<line_number>: can't pchar, stack empty, followed by a new line, and exit with the status EXIT_FAILURE

  • Example:

micahondiwa@ubuntu:~/monty$ cat bytecodes/28.m push 72pcharmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/28.m Hmicahondiwa@ubuntu:~/monty$
  1. pstr
  • The opcodepstr prints the string starting at the top of the stack, followed by a new line.

Usage:pstr

  • The integer stored in each element of the stack is treated as the ascii value of the character to be printed
  • The string stops when either:
    • the stack is over
    • the value of the element is 0
    • the value of the element is not in the ascii table
  • If the stack is empty, print only a new line
  • Example:
micahondiwa@ubuntu:~/monty$ cat bytecodes/31.m push 1push 2push 3push 4push 0push 110push 0push 108push 111push 111push 104push 99push 83micahondiwa@ubuntu:~/monty$ ./monty bytecodes/31.m Schoolmicahondiwa@ubuntu:~/monty$
  1. rotl
  • The opcoderotl rotates the stack to the top.

Usage: rotl

  • The top element of the stack becomes the last one, and the second top element of the stack becomes the first onerotl never fails
  • Example:
micahondiwa@ubuntu:~/monty$ cat bytecodes/35.m push 1push 2push 3push 4push 5push 6push 7push 8push 9push 0pallrotlpallmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/35.m 09876543219876543210micahondiwa@ubuntu:~/monty$
  1. rotr
  • The opcoderotr rotates the stack to the bottom.

Usage: rotr

  • The last element of the stack becomes the top element of the stackrotr never fails
  1. stack,queue

The stack opcode

  • The opcodestack sets the format of the data to a stack (LIFO). This is the default behavior of the program.

  • Usage: ```stack``

The queue opcode

  • The opcodequeue sets the format of the data to a queue (FIFO).

  • Usage:queue

When switching mode:

  • The top of the stack becomes the front of the queue
  • The front of the queue becomes the top of the stack

-Example:

micahondiwa@ubuntu:~/monty$ cat bytecodes/47.mqueuepush 1push 2push 3pallstackpush 4push 5push 6palladdpallqueuepush 11111addpallmicahondiwa@ubuntu:~/monty$ ./monty bytecodes/47.m1236541231141231512311111micahondiwa@ubuntu:~/monty$

Files and Directories

Directory/FileDescription
bfCodes implenting theBrainfuck Langauge
bytecodesContains bytecode files for themonty language
doubly_functions.cAC program implementing doubly-linked list: adding a note at the end of the doubly link list, adding a note at the begining of the doubly link list, frees the doubly linked list
get_opcodes.cAC program that selects the correct opcode to perform and returns a pointer to the function that executes the opcode.
main.cAC program that frees the global variables, initializes the global variables, checks if the file exists and if the file can be opened and provides the entry point.
malloc_functions.cAC program that concatenates two strings specially and changes the size and copy the content.
monty.hThe header file containing the prototypes of all your functions
opcode_instructions.cAC program containingpush,pall,pint,pop, andswap opcode functions.
opcode_instructions2.cAC program containingqueue,stack,add,nop, andsub opcode functions.
opcode_instructions3.cAC program containinbgdiv,mul,mod,pchar, andpstr opcode functions.
opcode_instructions4.cAC program containingrotl, androtr opcode functions
str_functions.cAC program withstrcmp-a function that compares two strings, sch-search if a char is inside a string andstrtoky - function that cut a string into tokens depending of the delimit

Author:micahondiwa

About

Monty 0.98 is a scripting language that is first compiled into Monty byte codes (Just like Python)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp