Skip to content

Commit e6e9a42

Browse files
authored
Don't warn about 24KB limit in ez80 mode
1 parent ad6657d commit e6e9a42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

export.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ void makeprgm (const unsigned char *output_contents, int size, FILE *outfile, co
483483
if (size > 24575) {
484484
if (size > 65535) {
485485
SetLastSPASMWarning(SPASM_WARN_SIGNER_FILE_SIZE_64KB);
486-
} else {
486+
} else if (!(mode & MODE_EZ80)) {
487487
SetLastSPASMWarning(SPASM_WARN_SIGNER_FILE_SIZE_24KB);
488488
}
489489
}

0 commit comments

Comments
 (0)