begin the C++ rewrite

This commit is contained in:
2026-03-08 17:23:13 +01:00
parent 3d14448de7
commit f71784909b
4 changed files with 101 additions and 10 deletions

View File

@@ -1,10 +1,10 @@
# emu # emu
Emulators written in C Emulators written in C and C++
* `chip8.c` - [CHIP8](https://en.wikipedia.org/wiki/CHIP-8) * `chip8.c` - [CHIP8](https://en.wikipedia.org/wiki/CHIP-8)
* `mos6502.c` - [MOS 6502](https://en.wikipedia.org/wiki/MOS_Technology_6502) * `mos6502.c` - [MOS 6502](https://en.wikipedia.org/wiki/MOS_Technology_6502)
* `riscv64.c & riscv64_dis.h` - [RV64IM instruction set](https://en.wikipedia.org/wiki/RISC-V) (more extensions coming soon-ish) * `riscv64.cc` - [RV64IM instruction set](https://en.wikipedia.org/wiki/RISC-V) (more extensions coming soon-ish)
## Building ## Building
``` ```

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
COMMON="-g -Wall -Wextra -Wpedantic -Wno-unused-variable -Wno-gnu-binary-literal" COMMON="-g -Wall -Wextra -Wpedantic -Wno-unused-variable"
echo "building mos6502..." echo "building mos6502..."
cc $COMMON -std=c99 -o mos6502 mos6502.c cc $COMMON -std=c99 -o mos6502 mos6502.c
@@ -17,7 +17,7 @@ if command -v pkg-config >/dev/null; then
LIBELF_FLAGS=$(pkg-config --cflags --libs libelf 2>/dev/null) LIBELF_FLAGS=$(pkg-config --cflags --libs libelf 2>/dev/null)
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "building riscv64..." echo "building riscv64..."
cc $COMMON -std=gnu11 -o riscv64 riscv64.c $LIBELF_FLAGS c++ $COMMON -o riscv64 riscv64.cc $LIBELF_FLAGS
else else
echo "libelf not found - skipping riscv64..." echo "libelf not found - skipping riscv64..."
fi fi

View File

@@ -20,12 +20,12 @@
typedef struct MOS6502 { typedef struct MOS6502 {
uint8_t *memory; uint8_t *memory;
uint16_t pc; uint16_t pc; // program counter
uint8_t A; uint8_t A; // accumulator
uint8_t X; uint8_t X; // register X
uint8_t Y; uint8_t Y; // register Y
uint8_t SP; uint8_t SP; // stack pointer
uint8_t P; uint8_t P; // processor status (see FLAG_*)
uint8_t display_modified_this_cycle; uint8_t display_modified_this_cycle;
} MOS6502; } MOS6502;

91
riscv64.cc Normal file
View File

@@ -0,0 +1,91 @@
// https://docs.riscv.org/reference/isa/unpriv/rv-32-64g.html
// https://riscv.org/wp-content/uploads/2024/12/riscv-calling.pdf
#if !defined(__cplusplus) || __cplusplus < 201703L
#error "This file requires at least C++17"
#endif
#include <array>
#include <fstream>
#include <gelf.h>
#include <iostream>
#include <libelf.h>
#include <vector>
typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
static constexpr u64 MEMORY_SIZE = 20 * 1024 * 1024; // should be enough
static std::array<const char *, 32> REGS = {
"zero", "ra", "sp", "gp", "tp", "t0", "t1", "t2", "fp", "s1", "a0",
"a1", "a2", "a3", "a4", "a5", "a6", "a7", "s2", "s3", "s4", "s5",
"s6", "s7", "s8", "s9", "s10", "s11", "t3", "t4", "t5", "t6"};
struct Section {
u64 offset;
u64 size;
u64 entrypoint;
};
class RISCV64 {
public:
RISCV64(const std::vector<char> &exe_bytes) {}
private:
std::array<u8, MEMORY_SIZE> m_memory;
u64 m_pc;
i64 m_regs[32];
Section m_code_section;
};
int main(int argc, char *argv[]) {
if (elf_version(EV_CURRENT) == EV_NONE) {
std::cerr << "Failed to initialize libelf: " << elf_errmsg(-1) << "\n";
return 1;
}
const char *path = nullptr;
for (int i = 1; i < argc; i++) {
path = argv[i];
}
if (path == nullptr) {
std::cerr << "Usage: " << argv[0] << " <path>\n";
return 1;
}
std::ifstream file(path, std::ios::binary | std::ios::ate);
if (!file) {
std::cerr << "Failed to open: " << path << "\n";
return 1;
}
i64 exe_size = file.tellg();
file.seekg(0, std::ios::beg);
std::vector<char> exe_bytes(exe_size);
file.read(exe_bytes.data(), exe_size);
file.close();
RISCV64 r(exe_bytes);
exe_bytes = {};
r.disassemble_all();
std::cout << "END DISASSEMBLY\n";
// for (r.pc = r.code_section.offset;
// r.pc < r.code_section.offset + r.code_section.size; r.pc += 4) {
// riscv64_disassemble_one(&r);
// }
// printf("END DISASSEMBLY\n");
// riscv64_execute(&r);
}