2019-06-13 07:09:37 +02:00
|
|
|
# loader.c
|
|
|
|
loader_write_rom(const char *name, uint64_t gpa, uint64_t size, bool isrom) "%s: @0x%"PRIx64" size=0x%"PRIx64" ROM=%d"
|
2020-01-30 17:02:03 +01:00
|
|
|
|
|
|
|
# qdev.c
|
|
|
|
qdev_reset(void *obj, const char *objtype) "obj=%p(%s)"
|
|
|
|
qdev_reset_all(void *obj, const char *objtype) "obj=%p(%s)"
|
|
|
|
qdev_reset_tree(void *obj, const char *objtype) "obj=%p(%s)"
|
|
|
|
qbus_reset(void *obj, const char *objtype) "obj=%p(%s)"
|
|
|
|
qbus_reset_all(void *obj, const char *objtype) "obj=%p(%s)"
|
|
|
|
qbus_reset_tree(void *obj, const char *objtype) "obj=%p(%s)"
|
|
|
|
qdev_update_parent_bus(void *obj, const char *objtype, void *oldp, const char *oldptype, void *newp, const char *newptype) "obj=%p(%s) old_parent=%p(%s) new_parent=%p(%s)"
|