summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-01-20 00:27:42 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-01-20 00:27:42 +0000
commit472c5273e255f97131e2f75d1e19c93b788ddefd (patch)
tree15a096639cf322bd57e74cb47236ab2d5a08ff31
parent15dcf5aa86656cea05847f6c9163ab884a161d12 (diff)
downloadqemu-472c5273e255f97131e2f75d1e19c93b788ddefd.zip
Change display colors, the LED bar is green and the text display is red.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2336 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--hw/mips_malta.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c
index 2c838a5b0b..bee29db0d0 100644
--- a/hw/mips_malta.c
+++ b/hw/mips_malta.c
@@ -81,8 +81,8 @@ static void malta_fpga_update_display(void *opaque)
}
leds_text[8] = '\0';
- qemu_chr_printf(s->display, "\e[H\n\n|\e[31m%-8.8s\e[00m|\r\n", leds_text);
- qemu_chr_printf(s->display, "\n\n\n\n|\e[32m%-8.8s\e[00m|", s->display_text);
+ qemu_chr_printf(s->display, "\e[H\n\n|\e[32m%-8.8s\e[00m|\r\n", leds_text);
+ qemu_chr_printf(s->display, "\n\n\n\n|\e[31m%-8.8s\e[00m|", s->display_text);
}
static uint32_t malta_fpga_readl(void *opaque, target_phys_addr_t addr)