From 3689ae195d5e8449e1bccdf677446d200866f2bf Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Tue, 15 Aug 2023 18:59:18 +0200 Subject: [PATCH] add function logging Signed-off-by: Sean Cross --- index.html | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 52f11a2..ffa0fd4 100644 --- a/index.html +++ b/index.html @@ -390,15 +390,34 @@ sysbus: Write of value 0x4 to an unimplemented register SYSTEM:PERIP_RST_EN0 (0x

Add Peripherals

+
    +
  1. See what's failing
  2. +
  3. Implement peripheral
  4. +
  5. Repeat
  6. +

Slowly Advance

-

GDB with ELF

+

Debugging with GDB

+
+

Logging Function Calls

+
cpu1: Entering function image_load at 0x403CE7D4
+cpu1: Entering function process_segments (entry) at 0x403CE474
+cpu1: Entering function process_segments at 0x403CE477
+cpu1: Entering function process_segments at 0x403CE4AF
+cpu1: Entering function process_segments at 0x403CE4B5
+cpu1: Entering function process_segments at 0x403CE74D
+cpu1: Entering function process_segments at 0x403CE4F4
+cpu1: Entering function image_load at 0x403CE7E4
+cpu1: Entering function image_load at 0x403CE7EB
+cpu1: Entering function image_load at 0x403CE7EF
+cpu1: CPU abort [PC=0x403CE7F2]: reading from external register not yet supported.
+

What's Left?