Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/milkymist
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2c00c05
Choose a base ref
...
head repository: m-labs/milkymist
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: adc92ab
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 10, 2011

  1. gdbstub: fix off-by-one error (Michael Walle)

    Sebastien Bourdeauducq committed Nov 10, 2011

    Unverified

    The signing certificate or its chain could not be verified.
    Copy the full SHA
    8c9a376 View commit details
  2. Update gdbstub rom

    Sebastien Bourdeauducq committed Nov 10, 2011

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    adc92ab View commit details
Showing with 3 additions and 3 deletions.
  1. +2 −2 cores/monitor/rtl/gdbstub.rom
  2. +1 −1 software/gdbstub/gdbstub.c
4 changes: 2 additions & 2 deletions cores/monitor/rtl/gdbstub.rom
Original file line number Diff line number Diff line change
@@ -662,7 +662,7 @@ fbfffe88
fbfffe7e
4c010117
2b830048
3401018f
34010190
54610114
2b81004c
ba001000
@@ -1030,7 +1030,7 @@ e0001030
38396162
63646566
00000000
69f0c80b
1f483ad7
00000000
00000000
00000000
2 changes: 1 addition & 1 deletion software/gdbstub/gdbstub.c
Original file line number Diff line number Diff line change
@@ -505,7 +505,7 @@ static void cmd_mem_read(void)

/* try to read %x,%x */
if (hex2int(&ptr, &addr) > 0 && *ptr++ == ',' && hex2int(&ptr, &length) > 0
&& length < (sizeof(remcom_out_buffer) / 2)) {
&& length <= sizeof(remcom_out_buffer) / 2) {
if (mem2hex((char *)addr, remcom_out_buffer, length) == NULL) {
strcpy(remcom_out_buffer, "E14");
}