# HG changeset patch # User William Astle # Date 1339360184 21600 # Node ID 4cabeffb8862a36e37a33b2d1e24e1ce6d905c85 # Parent 020e7592f7f2c3386b8839a9c7359824146bf7c0 Fix bizarre syntax error for lwasm What does FCB 'DD' mean anyway? Replaced with "FCB 'D" which is probably not correct but is most likely what it was interpreted as. diff -r 020e7592f7f2 -r 4cabeffb8862 3rdparty/drivers/sdisk/ddd0_40d.asm --- a/3rdparty/drivers/sdisk/ddd0_40d.asm Sun Jun 10 14:27:04 2012 -0600 +++ b/3rdparty/drivers/sdisk/ddd0_40d.asm Sun Jun 10 14:29:44 2012 -0600 @@ -55,7 +55,11 @@ OptEnd equ * * NAME STRINGS -DescName fcb 'DD' +; The following is the original code which doesn't make sense. The line +; after is what it was probably assembling as, which also doesn't make +; sense. --WAA +;DescName fcb 'DD' +DescName fcb 'D DscMgr fcs 'RBF' DscDrv fcs 'SDisk'