blob: f5d39bc970d612c9bcd4be3ffdd3c0035a364a9b (
plain)
1
2
3
4
5
6
7
8
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
|