Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nalin1096/Arm_interpreter
An arm interpreter made in C as part of our Computer Organization course 2015.
https://github.com/nalin1096/Arm_interpreter
Last synced: 2 months ago
JSON representation
An arm interpreter made in C as part of our Computer Organization course 2015.
- Host: GitHub
- URL: https://github.com/nalin1096/Arm_interpreter
- Owner: nalin1096
- Created: 2015-03-31T08:11:54.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-13T15:25:37.000Z (almost 10 years ago)
- Last Synced: 2024-04-24T16:41:53.522Z (9 months ago)
- Language: C
- Size: 482 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- AwesomeInterpreter - Arm_interpreter
README
================================================
Functional Simulator for subset of ARM Processor
================================================README
Table of contents
1. Directory Structure
2. How to build
3. How to executeDirectory Structure:
--------------------
CS112-Project
|
|- bin
|
|- myARMSim
|- doc
|
|- design-doc.docx
|- include
|
|- myARMSim.h
|- src
|- main.c
|- Makefile
|- myARMSim.h
|- test
|- simple_add.mem
|- fib_hex.mem
|- array_add.memHow to build
------------
For building:
$cd src
$makeFor cleaning the project:
$cd src
$make cleanHow to execute
--------------
$cd bin
$./myARMSim ../test/simple_add.mem