Files
riscv-emulator/emulator/components/Register.cpp
2025-06-12 14:17:36 +03:00

22 lines
323 B
C++

//
// Created by black on 12.06.25.
//
#include "Register.h"
Register* Register::getInstance() {
if (m_instance == nullptr) {
m_instance = new Register();
} else {
m_instance = new Register();
}
return m_instance;
}
void Register::setRegister() {
}
int Register::getRegister(int r) {
}