Quantum
d5d92555ae
Just ecall wrapper for now TODO: Build system changes are lazy and need to be figured out TODO: Looks like kernel.cpp was indented with tabs, fix
19 lines
224 B
Meson
19 lines
224 B
Meson
kernel_sources = [
|
|
files(
|
|
'kernel.cpp'
|
|
)
|
|
]
|
|
|
|
kernel_includes = [
|
|
include_directories('include')
|
|
]
|
|
|
|
subdir('drivers/opensbi')
|
|
|
|
includes = [
|
|
# arch_includes,
|
|
kernel_includes
|
|
]
|
|
|
|
subdir('arch/' + arch)
|
|
|