项目作者: dgoncalvesramos

项目描述 :
Picode compiler is an asm compiler for picode fake-invented asm language
高级语言: C
项目地址: git://github.com/dgoncalvesramos/picode-compiler.git
创建时间: 2017-04-15T15:49:38Z
项目社区:https://github.com/dgoncalvesramos/picode-compiler

开源协议:

下载


What is it ?

Picode compiler is an asm compiler for picode fake-invented asm language. It is a school compilation project developed during my second year at ENSIIE engineering school.

Compilation

Use $ make in /src

Usage

$ ./bin/aspico [options] test_files/file.asm

Options:
-d Generates a dump human readable file of the asm instructions.
-o <file_name> Allows you to rename the picode binary compiled file (default name is picode).
-t Prints the symbol table in your terminal.
-h Prints a textual help in your terminal.

How to test your picode binary compiled file ?

You can test your picode binary compiled file with the vm picode give in the /vmpicode folder.

Usage :

$ ./vmpicode your_binary_file

I do not own the source code of the vmpicode.