runtime: properly format addresses in InternalError message.

This commit is contained in:
whitequark 2016-01-10 18:07:08 +00:00
parent b669e83554
commit d1319b83e5
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ void exception_handler(unsigned long vect, unsigned long *regs,
unsigned long pc, unsigned long ea)
{
artiq_raise_from_c("InternalError",
"Hardware exception {0} at PC {1}, EA {2}",
"Hardware exception {0} at PC 0x{1:08x}, EA 0x{2:08x}",
vect, pc, ea);
}