-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathvm.c
146 lines (131 loc) · 3.25 KB
/
vm.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Copyright (C) 2016 Jeremiah Orians
* This file is part of stage0.
*
* stage0 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* stage0 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with stage0. If not, see <http://www.gnu.org/licenses/>.
*/
#include "vm.h"
#include <getopt.h>
/* Load program tape into Memory */
void load_program(struct lilith* vm, char* rom_name)
{
FILE* program;
program = fopen(rom_name, "r");
/* Figure out how much we need to load */
fseek(program, 0, SEEK_END);
size_t end = ftell(program);
rewind(program);
/* Deal with the special case of the ROM is bigger than available memory */
if(end > vm->amount_of_Ram)
{
fprintf(stderr, "Program %s is %d bytes large but only %d bytes of memory have been allocated!\n", rom_name, (int)end, (int)vm->amount_of_Ram);
exit(EXIT_FAILURE);
}
/* Load the entire tape into memory */
fread(vm->memory, 1, end, program);
fclose(program);
}
void execute_vm(struct lilith* vm)
{
struct Instruction* current;
current = calloc(1, sizeof(struct Instruction));
while(!vm->halted)
{
read_instruction(vm, current);
eval_instruction(vm, current);
}
free(current);
return;
}
/* Standard C main program */
int main(int argc, char **argv)
{
int c;
int Memory_Size = (16 * 1024);
tape_01_name = "tape_01";
tape_02_name = "tape_02";
char* rom_name = NULL;
char class;
static struct option long_options[] = {
{"rom", required_argument, 0, 'r'},
{"tape_01", required_argument, 0, '1'},
{"tape_02", required_argument, 0, '2'},
{"memory", required_argument, 0, 'm'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0}
};
int option_index = 0;
while ((c = getopt_long(argc, argv, "r:h:1:2:m", long_options, &option_index)) != -1)
{
switch (c)
{
case 0: break;
case 'r':
{
rom_name = optarg;
break;
}
case 'h':
{
fprintf(stdout, "Usage: %s --rom $rom [--tape_01 $foo] [--tape_02 $bar]\n", argv[0]);
exit(EXIT_SUCCESS);
}
case '1':
{
tape_01_name = optarg;
break;
}
case '2':
{
tape_02_name = optarg;
break;
}
case 'm':
{
int length = strlen(optarg) - 1;
class = optarg[length];
optarg[length] = 0;
Memory_Size = atoi(optarg);
if('K' == class)
{
Memory_Size = Memory_Size * 1024;
}
else if('M' == class)
{
Memory_Size = Memory_Size * 1024 * 1024;
}
else if('G' == class)
{
Memory_Size = Memory_Size * 1024 * 1024 * 1024;
}
break;
}
default:
{
exit(EXIT_FAILURE);
}
}
}
if(NULL == rom_name)
{
fprintf(stderr, "Usage: %s --rom $rom [--tape_01 $foo] [--tape_02 $bar]\n", argv[0]);
exit(EXIT_FAILURE);
}
/* Perform all the essential stages in order */
struct lilith* vm;
vm = create_vm(Memory_Size);
load_program(vm, rom_name);
execute_vm(vm);
destroy_vm(vm);
return EXIT_SUCCESS;
}