From 661ba30d5233e1b95ac312e88cd51380e664933b Mon Sep 17 00:00:00 2001 From: bd Date: Mon, 14 Apr 2025 23:10:18 -0400 Subject: Initial refactor of is_access_cleared --- inc/dram.h | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) (limited to 'inc/dram.h') diff --git a/inc/dram.h b/inc/dram.h index fc46b47..fbac620 100644 --- a/inc/dram.h +++ b/inc/dram.h @@ -25,42 +25,28 @@ class Dram : public Storage Dram(int delay); ~Dram(); - int - write_word(void *, signed int, int) override; - int - write_line(void *, std::array, int) override; - int - read_word(void *, int, signed int &) override; - int - read_line(void *, int, std::array &) override; + int write_word(void *, signed int, int) override; + int write_line(void *, std::array, int) override; + int read_word(void *, int, signed int &) override; + int read_line(void *, int, std::array &) override; /** * TODO This will accept a file at a later date. */ - void - load(std::vector program); + void load(std::vector program); private: /** * Helper for all access methods. * Calls `request_handler` when `id` is allowed to complete its * request cycle. + * Handles wait times and setting the current id this storage is serving. * @param the source making the request * @param the address to write to * @param the function to call when an access should be completed * @return 1 if the access completed successfully, 0 otherwise */ - int - process(void *id, int address, std::function request_handler); - /** - * Returns OK if `id` is allowed to complete its request this cycle. - * Handles wait times, side door, and setting the current id this - * storage is serving. - * @param the source making the request - * @return 1 if the access can be completed this function call, 0 otherwise - */ - int - is_access_cleared(void *id); + int process(void *id, int address, std::function request_handler); /** * Given `address`, returns the line and word it is in. * @param an address -- cgit v1.2.3