ready to fulfill detail functions

This commit is contained in:
2024-07-30 13:23:20 +00:00
parent 33e2120130
commit e0d6a82066
6 changed files with 198 additions and 10 deletions

View File

@ -1,6 +1,7 @@
#pragma once
#ifndef REGISTERFILE_H
#include "tools.h"
namespace ZYM {
struct RegisterFile_Input {
// receive control signal from CSU
dark::Wire<1> reset;
@ -29,8 +30,9 @@ struct RegisterFile : public dark::Module<RegisterFile_Input, RegisterFile_Outpu
RegisterFile() {
// Constructor
}
void update() {
void work() {
// Update function
}
};
}
#endif