package embox.arch.ppc.kernel

module boot {
	source "boot.S"
}

module context extends embox.arch.context {
	source "context.c", "context_switch.S", "context.h"
}

module locore {
	source "entry.S", "exception_table.S", "trap_handler.c"
}

module interrupt extends embox.arch.interrupt {
	source "irq_entry.S", "irq_handler.c", "ipl_impl.h"

	depends locore
}
