Files
matar/src/bus.cc
2023-09-11 10:25:14 +05:30

5 lines
78 B
C++

#include "bus.hh"
Bus::Bus(Memory&& memory)
: memory(std::move(memory)) {}