| 203 | } |
| 204 | |
| 205 | auto InterruptInitSMP(int, const char**) -> void { |
| 206 | cpu_io::VBAR_EL1::Write(reinterpret_cast<uint64_t>(vector_table)); |
| 207 | |
| 208 | InterruptSingleton::instance().SetUp(); |
| 209 | |
| 210 | cpu_io::EnableInterrupt(); |
| 211 | |
| 212 | klog::Info("Hello InterruptInitSMP"); |
| 213 | } |
nothing calls this directly
no test coverage detected