diff options
author | Michael Walle <michael@walle.cc> | 2011-02-17 23:45:12 +0100 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2011-03-07 13:42:37 +0100 |
commit | f19410ca691ddf5112eaefb30f7cea3ac3e713a4 (patch) | |
tree | dfb0ee1723eed781139db90a5c19a5c4bdc7342f /trace-events | |
parent | 770ae5713af30e42492581fd53000a1b4a92a3c7 (diff) |
lm32: system control model
This patch add support for a system control block. It is supposed to
act as helper for the emulated program. E.g. shutting down the VM or
printing test results. This model is intended for testing purposes only and
doesn't fit to any real hardware. Therefore, it is not added to any board
by default. Instead a user has to add it explicitly with the '-device'
commandline parameter.
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 90bbbc17e4..c79171989c 100644 --- a/trace-events +++ b/trace-events @@ -280,3 +280,6 @@ disable lm32_timer_irq_state(int level) "irq state %d" disable lm32_uart_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" disable lm32_uart_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" disable lm32_uart_irq_state(int level) "irq state %d" + +# hw/lm32_sys.c +disable lm32_sys_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |