16 lines
277 B
C++
16 lines
277 B
C++
#include "kernel.h"
|
|
|
|
namespace Kernel {
|
|
|
|
namespace Ports { void TestAll(); }
|
|
namespace WaitSynch { void TestAll(); }
|
|
namespace AddressArbiter { void TestAll(); }
|
|
|
|
void TestAll() {
|
|
Ports::TestAll();
|
|
WaitSynch::TestAll();
|
|
AddressArbiter::TestAll();
|
|
}
|
|
|
|
} // namespace
|