Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrianbzg/ram-machine-simulator
RAM Machine Simulator v1.0. Doc: http://adrianbzg.github.io/RAM-Machine-Simulator/html/
https://github.com/adrianbzg/ram-machine-simulator
Last synced: 10 days ago
JSON representation
RAM Machine Simulator v1.0. Doc: http://adrianbzg.github.io/RAM-Machine-Simulator/html/
- Host: GitHub
- URL: https://github.com/adrianbzg/ram-machine-simulator
- Owner: AdrianBZG
- License: apache-2.0
- Created: 2016-02-21T04:24:08.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-05T02:39:53.000Z (almost 8 years ago)
- Last Synced: 2024-11-05T20:13:28.718Z (about 2 months ago)
- Language: C++
- Homepage:
- Size: 499 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Design and Analysis of Algorithms
# RAM Machine Simulator
## By Adrián Rodríguez Bazaga
### Contact email: [email protected]# Dependencies
```sh
$ sudo apt-get install build-essential
```
Uses *C++11*# Build Status
![](http://i.imgur.com/7gvWrxI.png?1)# How to compile?
Use make inside the /src/ directory. Compilation uses dynamic linking, so only classes that have changed will be compiled, the others will be linked using the object (.o) that's inside ./obj/ directory.
```sh
$ make clean
$ make
```# How to execute?
The result of the compilation is placed inside /src/compiled folder, with the name RAMmachine, to execute it just use ./src/compiled/RAMmachine from the root directory# Download source code
```sh
$ git clone https://github.com/AdrianBZG/RAM-Machine-Simulator.git
```# Documentation
Take a look at the documentation by clicking [here](http://adrianbzg.github.io/RAM-Machine-Simulator/html/).
LICENSE
=======
``` java
Copyright 2016 Adrián Rodríguez BazagaLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```