2 Commits

Author SHA1 Message Date
8158d35065 Fix the scaling and add nonthreaded 2025-02-22 16:35:53 +01:00
274c99f98b Add non multithread mode 2025-02-22 16:15:05 +01:00
5 changed files with 102 additions and 53 deletions

View File

@@ -210,9 +210,9 @@ int resolveMOV(const char *dest, const char *src) {
}
}
int resolveALU(int baseOpcode, const char *src) {
int resolveALU(int baseOpcode, const char *src, const char *dest) {
// baseOpcode is one of our special negative values for ADD, SUB, etc.
if (src[0] == 'R' || src[0] == 'r') {
if (dest[0] == 'R' || dest[0] == 'r') {
switch (baseOpcode) {
case -3:
return ADD_RN_RM;
@@ -230,6 +230,11 @@ int resolveALU(int baseOpcode, const char *src) {
return OR_RN_RM;
case -10:
return XOR_RN_RM;
default:
return -1;
}
} else if (src[0] == 'r' || src[0] == 'R' && baseOpcode < -11) {
switch (baseOpcode) {
case -12:
return INC_RN;
case -13:
@@ -467,7 +472,7 @@ uint32_t completePass(const char *source, CPU *cpu, bool erase) {
fprintf(stderr, "Error: %s requires one operand.\n", mnemonic);
return 1;
}
int resolvedOpcode = resolveALU(baseOpcode, operand1);
int resolvedOpcode = resolveALU(baseOpcode, operand1, operand2);
cpu->memory[addr++] = resolvedOpcode;
if (operand1[0] == 'R' || operand1[0] == 'r') {
int reg = parseRegister(operand1);
@@ -491,7 +496,7 @@ uint32_t completePass(const char *source, CPU *cpu, bool erase) {
fprintf(stderr, "Error: %s requires two operands.\n", mnemonic);
return 1;
}
int resolvedOpcode = resolveALU(baseOpcode, operand1);
int resolvedOpcode = resolveALU(baseOpcode, operand1, operand2);
cpu->memory[addr++] = resolvedOpcode;
int regDest = parseRegister(operand1);
cpu->memory[addr++] = regDest;
@@ -509,7 +514,7 @@ uint32_t completePass(const char *source, CPU *cpu, bool erase) {
fprintf(stderr, "Error: JMP requires one operand.\n");
return 1;
}
int resolvedOpcode = resolveALU(baseOpcode, operand1);
int resolvedOpcode = resolveALU(baseOpcode, operand1, operand2);
cpu->memory[addr++] = resolvedOpcode;
if (operand1[0] == '+' || operand1[0] == '-') {
// Relative jump: one-byte offset.
@@ -529,7 +534,7 @@ uint32_t completePass(const char *source, CPU *cpu, bool erase) {
fprintf(stderr, "Error: %s requires three operands.\n", mnemonic);
return 1;
}
int resolvedOpcode = resolveALU(baseOpcode, operand1);
int resolvedOpcode = resolveALU(baseOpcode, operand1, operand2);
cpu->memory[addr++] = resolvedOpcode;
// Encode the source operand (register or memory).
if (operand1[0] == 'R' || operand1[0] == 'r') {

View File

@@ -70,7 +70,7 @@ int getOpcode(char *mnemonic);
//
int resolveMOV(const char *dest, const char *src);
int resolveALU(int baseOpcode, const char *src);
int resolveALU(int baseOpcode, const char *src, const char *dest);
//
// The first pass scans the assembly source file to record all labels and their addresses.

80
main.c
View File

@@ -28,6 +28,8 @@ SDL_Renderer *renderer = NULL;
#define smallFont fonts[1]
#define smallerFont fonts[2]
//#define CPU_THREADED
#define fontCount 3
BitmapFont fonts[fontCount];
@@ -49,8 +51,10 @@ TextEditor editors[editorCount];
unsigned long frames = 0;
bool cursor = true;
#ifdef CPU_THREADED
pthread_t cpu_thread;
pthread_mutex_t cpu_mutex = PTHREAD_MUTEX_INITIALIZER;
#endif
void msleep(unsigned int milliseconds) {
struct timespec ts;
@@ -59,32 +63,54 @@ void msleep(unsigned int milliseconds) {
nanosleep(&ts, NULL);
}
void *cpu_loop(void *arg) {
uint64_t last_tick = SDL_GetTicks64();
while (running) {
static uint64_t last_tick = 0;
// This function executes one iteration of the CPU loop (non-blocking)
void cpu_step(void) {
if (last_tick == 0) {
last_tick = SDL_GetTicks64();
}
#ifdef CPU_THREADED
pthread_mutex_lock(&cpu_mutex);
#endif
if (!(cpu.mode & (CPU_MODE_PAUSED | CPU_MODE_HALTED | CPU_MODE_ERROR))) {
step(&cpu);
} else {
#ifdef CPU_THREADED
pthread_mutex_unlock(&cpu_mutex);
msleep(10);
#endif
return;
}
if (cpu.mode & CPU_MODE_SECOND) {
#ifdef CPU_THREADED
pthread_mutex_unlock(&cpu_mutex);
#endif
msleep(1000);
continue;
return;
} else if (cpu.mode & CPU_MODE_FRAME) {
uint64_t frame_duration = SDL_GetTicks64() - last_tick;
if (frame_duration < delayNeeded) {
#ifdef CPU_THREADED
pthread_mutex_unlock(&cpu_mutex);
#endif
msleep(delayNeeded - frame_duration);
continue;
return;
}
last_tick = SDL_GetTicks64();
}
#ifdef CPU_THREADED
pthread_mutex_unlock(&cpu_mutex);
#endif
}
// Blocking loop for running as a thread
void *cpu_loop(void *arg) {
while (running) {
cpu_step();
}
return NULL;
}
@@ -192,15 +218,15 @@ int init() {
SDL_PauseAudioDevice(dev, 0);
init_seven_segment(&displayA, renderer, 480, 240, 60, 120);
init_seven_segment(&displayB, renderer, 545, 240, 60, 120);
init_seven_segment(&displayC, renderer, 610, 240, 60, 120);
init_seven_segment(&displayD, renderer, 675, 240, 60, 120);
init_seven_segment(&displayA, renderer, 477, 240, 60, 120);
init_seven_segment(&displayB, renderer, 542, 240, 60, 120);
init_seven_segment(&displayC, renderer, 607, 240, 60, 120);
init_seven_segment(&displayD, renderer, 672, 240, 60, 120);
init_seven_segment(&displayE, renderer, 480, 375, 60, 120);
init_seven_segment(&displayF, renderer, 545, 375, 60, 120);
init_seven_segment(&displayG, renderer, 610, 375, 60, 120);
init_seven_segment(&displayH, renderer, 675, 375, 60, 120);
init_seven_segment(&displayE, renderer, 477, 375, 60, 120);
init_seven_segment(&displayF, renderer, 542, 375, 60, 120);
init_seven_segment(&displayG, renderer, 607, 375, 60, 120);
init_seven_segment(&displayH, renderer, 672, 375, 60, 120);
init_switches(&switchesA, renderer, 500, 500, 100, 100);
init_switches(&switchesB, renderer, 625, 500, 100, 100);
@@ -415,8 +441,6 @@ SDL_Keycode ConvertKPToNonKP(SDL_Keycode keycode) {
}
}
uint8_t cpuSpeedTemp = 0;
int processEvent(SDL_Event e) {
if (e.type == SDL_QUIT) { return 0; }
else if (e.type == SDL_WINDOWEVENT && e.window.event == SDL_WINDOWEVENT_RESIZED) {
@@ -620,10 +644,19 @@ int processEvent(SDL_Event e) {
}
}
} else if (e.type == SDL_MOUSEBUTTONDOWN) {
SDL_Rect viewport;
SDL_RenderGetViewport(renderer, &viewport);
SDL_Rect mouset;
mouset.w = 1;
mouset.h = 1;
SDL_GetMouseState(&mouset.x, &mouset.y);
// Translate mouse coordinates to viewport space
SDL_Rect mouse;
mouse.w = 1;
mouse.h = 1;
SDL_GetMouseState(&mouse.x, &mouse.y);
mouse.x = ((mouset.x - viewport.x) * SCREEN_WIDTH) / viewport.w;
mouse.y = (mouset.y - viewport.y) * SCREEN_HEIGHT / viewport.h;
toggle_switch(mouse, &switchesA);
toggle_switch(mouse, &switchesB);
toggle_switch(mouse, &switchesC);
@@ -642,10 +675,18 @@ int main(__attribute__((unused)) int argc, __attribute__((unused)) char *args[])
SDL_Event e;
Uint64 start;
Uint64 end;
#ifdef CPU_THREADED
pthread_create(&cpu_thread, NULL, cpu_loop, NULL);
#endif
while (running) {
start = SDL_GetTicks64();
#ifndef CPU_THREADED
cpu_step();
#endif
#ifdef CPU_THREADED
pthread_mutex_lock(&cpu_mutex);
#endif
while (SDL_PollEvent(&e)) {
running = processEvent(e);
}
@@ -671,7 +712,9 @@ int main(__attribute__((unused)) int argc, __attribute__((unused)) char *args[])
updateState(false);
}
}
#ifdef CPU_THREADED
pthread_mutex_unlock(&cpu_mutex);
#endif
end = SDL_GetTicks64();
const unsigned long timeNeeded = end - start;
if (timeNeeded < delayNeeded) {
@@ -706,8 +749,9 @@ int main(__attribute__((unused)) int argc, __attribute__((unused)) char *args[])
destroy_seven_segment(&displayF);
destroy_seven_segment(&displayG);
destroy_seven_segment(&displayH);
#ifdef CPU_THREADED
pthread_join(cpu_thread, NULL);
#endif
if (renderer) SDL_DestroyRenderer(renderer);
if (window) SDL_DestroyWindow(window);

View File

@@ -72,20 +72,20 @@ void init_switches(Switches *switches, SDL_Renderer *renderer, int x, int y, int
switches->rect->x = 0;
switches->rect->y = 0;
switches->rect->w = width;
switches->rect->h = height;
switches->rect->w = width + 2;
switches->rect->h = height + 2;
switches->outRect->x = x;
switches->outRect->y = y;
switches->outRect->w = width;
switches->outRect->h = height;
switches->outRect->w = width + 2;
switches->outRect->h = height + 2;
switches->texture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, width, height);
switches->texture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, width + 2, height + 2);
if (!switches->texture) {
fprintf(stderr, "Failed to create texture: %s\n", SDL_GetError());
exit(EXIT_FAILURE);
}
switches->value = (1 << 0) | (1 << 1);
switches->value = 0;
generate_switch_rects(switches);
update_switches_texture(renderer, switches);
}

View File

@@ -77,7 +77,7 @@ void init_editor(TextEditor *editor, BitmapFont *font, int x, int y, SDL_Rendere
editor->highlightedLineRect->x = 2;
editor->highlightedLineRect->y = 2;
editor->highlightedLineRect->w = editor->outRect->w - (2 * editor->highlightedLineRect->x);
editor->highlightedLineRect->h = editor->font->size;
editor->highlightedLineRect->h = editor->font->size + 1;
editor->cursorRect->x = 3 + editor->cursor_pos * font->size + editor->outRect->x;
editor->cursorRect->y =
@@ -333,16 +333,16 @@ void editor_render(TextEditor *editor, SDL_Renderer *renderer, CPU *cpu, uint8_t
if (editorIndex == 0) {
targetLine = cpu->addrToLineMapper[instrLine] - editor->cursor_line_offset;
editor->highlightedLineRect->w = editor->rect->w - 1;
editor->highlightedLineRect->x = 2;
editor->highlightedLineRect->x = 0;
}
if (editorIndex == 1) {
targetLine = (instrLine / 2) - editor->cursor_line_offset;
editor->highlightedLineRect->w = (editor->rect->w / 5 * 2) - 2;
editor->highlightedLineRect->w = (editor->rect->w / 5 * 2) - 8;
editor->highlightedLineRect->x =
2 + (11 * editor->font->size) + (instrLine % 2 ? (28 * editor->font->size) : 0);
4 + (11 * editor->font->size) + (instrLine % 2 ? (28 * editor->font->size) : 0);
}
editor->highlightedLineRect->y = 2 + ((editor->font->size + 1) * targetLine);
editor->highlightedLineRect->y = 1 + ((editor->font->size + 1) * targetLine);
SDL_Rect highlightedLineAbs = *editor->highlightedLineRect;
highlightedLineAbs.x += editor->outRect->x;
highlightedLineAbs.y += editor->outRect->y;