5 lines
78 B
C++
5 lines
78 B
C++
#include "bus.hh"
|
|
|
|
Bus::Bus(Memory&& memory)
|
|
: memory(std::move(memory)) {}
|