-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.js
More file actions
296 lines (265 loc) · 9.07 KB
/
controller.js
File metadata and controls
296 lines (265 loc) · 9.07 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// import model
import { StartRules, SyntaxError, parse } from './pvm/parser.mjs'
import CPU from './pvm/cpu.mjs'
const vm = new CPU();
const fileSelect = document.getElementById('options');
//const loadFileButton = document.getElementById('loadFile');
const fileContent = document.getElementById('code');
// assemble code
export function assemble() {
let code = "";
let quad_json = "";
updateConsole("assemble\n");
code = document.getElementById("code").value;
try {
vm.instructions = parse(code);
quad_json = JSON.stringify(vm.instructions);
updateConsole(quad_json+"\n$ ");
return true;
} catch (e) {
if (e instanceof SyntaxError) {
// Acceder a la ubicación del error
const { location } = e;
const errorMessage = `Error in line ${location.start.line}, column ${location.start.column}: ${e.message}`;
updateConsole(errorMessage + "\n$ ");
} else {
// Manejar otros tipos de errores
updateConsole(e + "\n$ ");
}
//updateConsole(e+"\n$ ");
return false;
}
}
// run program
export function run() {
if (assemble()) {
vm.run();
updateConsole("run\n"+vm.output+"$ ");
showRegisters();
showFloatRegisters();
showStack();
}
}
// Obtener la lista de archivos de la carpeta
async function loadFileList() {
const response = await fetch(`https://api.github.com/repos/luisespino/assembly/contents/risc-v`);
const data = await response.json();
if (Array.isArray(data)) {
data.forEach(file => {
if (file.type === 'file') {
const option = document.createElement('option');
option.value = file.download_url; // URL para descargar el archivo
option.textContent = file.name; // Nombre del archivo
fileSelect.appendChild(option);
}
});
}
}
// load initial code
window.onload = function() {
//loadFile("src/print.s");
//document.getElementById("code").value = input
loadFileList();
showRegisters();
showFloatRegisters();
showStack();
};
// Cargar el contenido del archivo seleccionado
async function loadFileContent() {
const selectedFileUrl = fileSelect.value;
if (selectedFileUrl) {
const response = await fetch(selectedFileUrl);
const text = await response.text();
fileContent.value = text; // Mostrar el contenido en el textarea
}
}
function loadFile(filePath) {
fetch(filePath)
.then(response => {
if (!response.ok) {
return "Network response was not ok.";
}
return response.text();
})
.then(content => {
document.getElementById("code").value = content;
})
.catch(error => {
return "Error fetching the file.";
});
}
function updateConsole(append) {
let c = document.getElementById("console");
const isScrolledToBottom = c.scrollTop + c.clientHeight >= c.scrollHeight - 20;
c.value += append;
if (isScrolledToBottom) c.scrollTop = c.scrollHeight;
}
// tab handler
function tabHandler(e) {
if (e.key === 'Tab') {
e.preventDefault();
var start = this.selectionStart;
var end = this.selectionEnd;
this.value = this.value.substring(0, start) +
"\t" + this.value.substring(end);
this.selectionStart = this.selectionEnd = start + 1;
}
}
// del handler
function delHandler(e) {
if (e.key === 'Delete' || e.key === 'Backspace') {
e.preventDefault();
}
}
// show register
function showRegisters() {
const tableContainer = document.getElementById('registers-table');
const table = document.createElement('table');
const headerRow = document.createElement('tr');
const indexHeader = document.createElement('th');
indexHeader.textContent = 'Register';
headerRow.appendChild(indexHeader);
const aliasHeader = document.createElement('th');
aliasHeader.textContent = 'Alias';
headerRow.appendChild(aliasHeader);
const contentHeader = document.createElement('th');
contentHeader.textContent = 'Decimal value';
headerRow.appendChild(contentHeader);
table.appendChild(headerRow);
// load values
for (let i = 0; i < vm.registers.length; i++) {
const rowData = document.createElement('tr');
const indexCell = document.createElement('td');
indexCell.textContent = "x"+i;
rowData.appendChild(indexCell);
const aliasCell = document.createElement('td');
aliasCell.textContent = vm.alias[i];
rowData.appendChild(aliasCell);
const contentCell = document.createElement('td');
contentCell.textContent = vm.registers[i];
rowData.appendChild(contentCell);
table.appendChild(rowData);
}
tableContainer.innerHTML = '';
tableContainer.appendChild(table);
}
// show register
function showFloatRegisters() {
const tableContainer = document.getElementById('float-table');
const table = document.createElement('table');
const headerRow = document.createElement('tr');
const indexHeader = document.createElement('th');
indexHeader.textContent = 'Register';
headerRow.appendChild(indexHeader);
const aliasHeader = document.createElement('th');
aliasHeader.textContent = 'Alias';
headerRow.appendChild(aliasHeader);
const contentHeader = document.createElement('th');
contentHeader.textContent = 'Decimal value';
headerRow.appendChild(contentHeader);
table.appendChild(headerRow);
// load values
for (let i = 0; i < vm.registers.length; i++) {
const rowData = document.createElement('tr');
const indexCell = document.createElement('td');
indexCell.textContent = "f"+i;
rowData.appendChild(indexCell);
const aliasCell = document.createElement('td');
aliasCell.textContent = vm.aliasFloat[i];
rowData.appendChild(aliasCell);
const contentCell = document.createElement('td');
contentCell.textContent = vm.fregisters[i];
rowData.appendChild(contentCell);
table.appendChild(rowData);
}
tableContainer.innerHTML = '';
tableContainer.appendChild(table);
}
// show stack
function showStack() {
const tableContainer = document.getElementById('stack-table');
const table = document.createElement('table');
const headerRow = document.createElement('tr');
const indexHeader = document.createElement('th');
indexHeader.textContent = 'Address';
headerRow.appendChild(indexHeader);
const contentHeader = document.createElement('th');
contentHeader.textContent = 'Hexadecimal content';
headerRow.appendChild(contentHeader);
table.appendChild(headerRow);
let view = new DataView(vm.stack);
let a = 0;
// load values
for (let i = 0; i < vm.addr.length; i++) {
const rowData = document.createElement('tr');
const indexCell = document.createElement('td');
indexCell.textContent = vm.addr[i];
rowData.appendChild(indexCell);
const contentCell = document.createElement('td');
if (i<16) a = 2097136 + i;
else a = i - 16;
let str = "";
let i8a = new Uint8Array(vm.stack.slice(a*8,a*8+8));
for (let j of i8a) {
let hex = j.toString(16).toUpperCase();
while (hex.length < 2) hex = "0" + hex;
str += hex
}
contentCell.textContent = str;
rowData.appendChild(contentCell);
table.appendChild(rowData);
}
tableContainer.innerHTML = '';
tableContainer.appendChild(table);
}
function loadCode() {
var selected = document.getElementById("options").value;
switch (selected) {
case "print":
loadFile("src/print.s");
break;
case "read":
loadFile("src/read.s");
break;
case "arithmetic":
loadFile("src/arithmetic.s");
break;
case "gen_abc":
loadFile("src/gen_abc.s");
break;
case "factorial":
loadFile("src/factorial.s");
break;
case "float":
loadFile("src/float.s");
break;
}
}
// keydown listener for tab handler
document.getElementById('code').addEventListener('keydown', tabHandler);
// keydown listener for delete and backspace handler
document.getElementById('console').addEventListener('keydown', delHandler);
//loadFileButton.addEventListener('click', loadFileContent);
document.addEventListener("DOMContentLoaded", function() {
var combobox = document.getElementById("options");
combobox.addEventListener("change", function() {
//loadCode();
loadFileContent();
});
});
/*
// assemble button listener
document.addEventListener('DOMContentLoaded', function() {
const loadButton = document.getElementById('assemble');
loadButton.addEventListener('click', function() {
assemble();
});
});
*/
// run button listener
document.addEventListener('DOMContentLoaded', function() {
const loadButton = document.getElementById('run');
loadButton.addEventListener('click', function() {
run();
});
});