mirror of
https://github.com/xomboverlord/xomb-bare-bones.git
synced 2026-01-11 18:33:15 +01:00
The archimport.d file is for importing the specific architecture and its interfaces. It can be imported by any module, as I will do for the next commit. Signed-off-by: The XOmB Overlord <overlord@xomb.net>
13 lines
219 B
D
13 lines
219 B
D
/*
|
|
* archimport.d
|
|
*
|
|
* This file will publically import all modules used to define
|
|
* the architecture interfaces provided by this architecture.
|
|
*
|
|
*/
|
|
|
|
module archimport;
|
|
|
|
// Example:
|
|
// import kernel.arch.x86.main;
|