diff --git a/src/Doc/Quirks.DD b/src/Doc/Quirks.DD index b02a4763..f1e90464 100755 --- a/src/Doc/Quirks.DD +++ b/src/Doc/Quirks.DD @@ -10,7 +10,7 @@ $WW,1$* You run a risk of problems if you do file operations on the same files s * Call $LK,"DiskChange",A="MN:DiskChange"$() when you insert a new removable media. -* Accessing CD/DVD's is flacky. Try $LK,"Drive",A="MN:Drive"$() or $LK,"DiskChange",A="MN:DiskChange"$() twice. +* Accessing CD/DVD's is flaky. Try $LK,"Drive",A="MN:Drive"$() or $LK,"DiskChange",A="MN:DiskChange"$() twice. * You can only $FG,2$extern$FG$ something once. There is a varient called $FG,2$_extern$FG$ which binds a ZealC definition to a asm symbol. This, too, can only be done once. diff --git a/src/Doc/ScopingLinkage.DD b/src/Doc/ScopingLinkage.DD index d3d89d3e..4bc782ab 100755 --- a/src/Doc/ScopingLinkage.DD +++ b/src/Doc/ScopingLinkage.DD @@ -79,7 +79,7 @@ C goto $FG,2$label:$FG$ F C FG N variable F S FR N $FG,2$static$FG$ variable F C FR D N variable G C G TR D D - variable G D G TR S D + variable G D G TR S D $FG,2$class$FG$ G C TR D class member G TR P $FG,2$extern class$FG$ G C TR D diff --git a/src/Home/SSE.ZC b/src/Home/SSE.ZC index a6ef59b5..92d210ff 100755 --- a/src/Home/SSE.ZC +++ b/src/Home/SSE.ZC @@ -3,7 +3,7 @@ The ZealC assembler currently has partial SSE support. SSE instructions with no prefix are fully supported, -but instructions prefixed with 0x66, 0xF2, or F3 +but instructions prefixed with 0x66, 0xF2, or 0xF3 can only be assembled using the lower registers, XMM0-XMM7 and RAX-RDI. diff --git a/src/Misc/OSTestSuite.ZC b/src/Misc/OSTestSuite.ZC index 1f84369f..a095513b 100755 --- a/src/Misc/OSTestSuite.ZC +++ b/src/Misc/OSTestSuite.ZC @@ -1741,7 +1741,7 @@ U0 OSTestSuite() TS("FPrintF"); if (DriveIsWritable('~')) DoFPrintF; TS("SerializeTree"); TSFile("::/Demo/Disk/SerializeTree"); TS("Exceptions"); DoExceptions; - TS("ScreenDCodes"); TSFileChar("::/Demo/ScreenCodes"); + TS("ScreenCodes"); TSFileChar("::/Demo/ScreenCodes"); TS("ExtChars"); TSFile("::/Demo/ExtChars"); TS("PanText"); TSFile("::/Demo/Graphics/PanText", 0); TS("CharAnimation"); TSFile("::/Demo/Graphics/CharAnimation"); diff --git a/src/System/DolDoc/DocRecalc.ZC b/src/System/DolDoc/DocRecalc.ZC index 98c8fdaa..3005f5af 100755 --- a/src/System/DolDoc/DocRecalc.ZC +++ b/src/System/DolDoc/DocRecalc.ZC @@ -1156,7 +1156,7 @@ rc_adjust_xy: dc->bkcolor = i; if (doc_e->de_flags & DOCEF_FROM_START) { - xx = (x -k - x0) * FONT_WIDTH; //TODO: scrolling text is not length k + xx = (x - k - x0) * FONT_WIDTH; //TODO: scrolling text is not length k yy = (y - y0) * FONT_HEIGHT; zz = 0; }