From d31c9ab22d66df60138b5ee50e497a51f4c82723 Mon Sep 17 00:00:00 2001 From: tudnai Date: Sat, 12 Nov 2022 11:52:17 -0800 Subject: [PATCH] Added some details to the documentation --- src/cpu/6502_bp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpu/6502_bp.c b/src/cpu/6502_bp.c index 0c36d4f..58129f2 100644 --- a/src/cpu/6502_bp.c +++ b/src/cpu/6502_bp.c @@ -33,6 +33,7 @@ #include "6502_bp.h" /// Array of addresses of active breakpoints +/// @note DEBUG_MAX_BREAKPOINTS controls its size uint16_t breakpoints[DEBUG_MAX_BREAKPOINTS]; /// Index of last valid breakpoint element in the array int bp_last_idx = 0;