Files
neulacpu/labus/device.cc
2023-05-18 00:05:52 +08:00

5 lines
130 B
C++

#include <device.hh>
Device::Device(bool cacheable): cacheable_(cacheable) {}
bool Device::is_cacheable() { return cacheable_; }