From 6a1fbb356527a7027bcef9d2ab6c0000e49272cf Mon Sep 17 00:00:00 2001 From: cnlohr <lohr85@gmail.com> Date: Wed, 3 May 2023 06:25:16 -0400 Subject: [PATCH] Give credit where it's appropriate. --- minichlink/microgdbstub.h | 2 ++ minichlink/minichgdb.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/minichlink/microgdbstub.h b/minichlink/microgdbstub.h index c4419b7..669c080 100644 --- a/minichlink/microgdbstub.h +++ b/minichlink/microgdbstub.h @@ -4,6 +4,8 @@ * You may freely license this file under the MIT-x11, or the 2- or 3- or New BSD Licenses. * You may also use this as though it is public domain. * + * This project is based off of picorvd. https://github.com/aappleby/PicoRVD/ + * * Simply: * 1: define the RV_ Functions * 2: Call the MicroGDB* functions needed. diff --git a/minichlink/minichgdb.c b/minichlink/minichgdb.c index 0735901..c3f783a 100644 --- a/minichlink/minichgdb.c +++ b/minichlink/minichgdb.c @@ -28,7 +28,7 @@ void SendReplyFull( const char * replyMessage ); /////////////////////////////////////////////////////////////////////////////// // Actual Chip Operations -// Several pieces from picorvd. +// Several pieces from picorvd. https://github.com/aappleby/PicoRVD/ int shadow_running_state = 1; int last_halt_reason = 5; uint32_t backup_regs[17]; -- GitLab