7 lines
133 B
C++
7 lines
133 B
C++
#include <iostream>
|
|
#include "RamInstruction.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
RamInstruction a("text.ram");
|
|
return 0;
|
|
}
|