QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
486 B
25 lines
486 B
gen = decodetree.process('insns.decode')
|
|
|
|
openrisc_ss = ss.source_set()
|
|
openrisc_ss.add(gen)
|
|
openrisc_ss.add(files(
|
|
'cpu.c',
|
|
'disas.c',
|
|
'exception.c',
|
|
'exception_helper.c',
|
|
'fpu_helper.c',
|
|
'gdbstub.c',
|
|
'interrupt_helper.c',
|
|
'sys_helper.c',
|
|
'translate.c',
|
|
))
|
|
|
|
openrisc_system_ss = ss.source_set()
|
|
openrisc_system_ss.add(files(
|
|
'interrupt.c',
|
|
'machine.c',
|
|
'mmu.c',
|
|
))
|
|
|
|
target_arch += {'or1k': openrisc_ss}
|
|
target_common_system_arch += {'or1k': openrisc_system_ss}
|
|
|