From bee2a0e86a9cc7fd9c32944fb81682da8bfe9d89 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 22 Feb 2018 14:10:19 -0600 Subject: [PATCH] Add missing docblocks for NP2 and NP3 --- src/mos6502.exec.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/mos6502.exec.c b/src/mos6502.exec.c index 0890b70..15ee2a7 100644 --- a/src/mos6502.exec.c +++ b/src/mos6502.exec.c @@ -68,10 +68,18 @@ DEFINE_INST(nop) // do nothing } +/* + * This is not any different from NOP, except that it uses a different + * address mode. + */ DEFINE_INST(np2) { } +/* + * This is not any different from NOP, except that it uses a different + * address mode. + */ DEFINE_INST(np3) { }