From 70a801a43c16fd7a5f61e8d876e5d5c2db48ebe8 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 16 Sep 2026 22:34:56 +0200 Subject: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- include/asm.s | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/asm.s (limited to 'include/asm.s') diff --git a/include/asm.s b/include/asm.s new file mode 100644 index 0000000..f5d39bc --- /dev/null +++ b/include/asm.s @@ -0,0 +1,9 @@ +;; Pseudo-instruction from 'nasm' that is not available for 'ca65'. An empty +;; implementation is actually quite accurate, as it's just a way for 'nasm' to +;; perform extra checks when programmers want to explicitly make the code fall +;; through. +.ifndef __NASM__ + .macro __fallthrough__ arg + ;; Nothing to do. + .endmacro +.endif -- cgit v1.2.3