[z88dk-dev] z80asm: bug with filenames interpretting escape sequence

Bridge to the z88dk-developers mailing list
Post Reply
alvin
Well known member
Posts: 1872
Joined: Mon Jul 16, 2007 7:39 pm

[z88dk-dev] z80asm: bug with filenames interpretting escape sequence

Post by alvin »

I've got this bit of code:

_effect1:
include "wavs\Sound Effect (1).wavfrm_msx.asm"
defw -1

which results in an error "wavsSound Effect (1).wavfrm_msx.asm" not found. The backslash is being used as an escape char.

This works:

_effect1:
include "wavs\\Sound Effect (1).wavfrm_msx.asm"
defw -1



------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
Post Reply