Fix a few formatting errors and typos.

This commit is contained in:
TomAwezome 2022-03-26 00:59:25 -04:00
parent b992dcebb2
commit 8951ce2445
5 changed files with 5 additions and 5 deletions

View file

@ -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. * 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. * 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.

View file

@ -79,7 +79,7 @@ C goto $FG,2$label:$FG$ F C FG N
variable F S FR N variable F S FR N
$FG,2$static$FG$ variable F C FR D N $FG,2$static$FG$ variable F C FR D N
variable G C G TR D D 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 $FG,2$class$FG$ G C TR D
class member G TR P class member G TR P
$FG,2$extern class$FG$ G C TR D $FG,2$extern class$FG$ G C TR D

View file

@ -3,7 +3,7 @@
The ZealC assembler currently has partial SSE support. The ZealC assembler currently has partial SSE support.
SSE instructions with no prefix are fully supported, 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, can only be assembled using the lower registers,
XMM0-XMM7 and RAX-RDI. XMM0-XMM7 and RAX-RDI.

View file

@ -1741,7 +1741,7 @@ U0 OSTestSuite()
TS("FPrintF"); if (DriveIsWritable('~')) DoFPrintF; TS("FPrintF"); if (DriveIsWritable('~')) DoFPrintF;
TS("SerializeTree"); TSFile("::/Demo/Disk/SerializeTree"); TS("SerializeTree"); TSFile("::/Demo/Disk/SerializeTree");
TS("Exceptions"); DoExceptions; TS("Exceptions"); DoExceptions;
TS("ScreenDCodes"); TSFileChar("::/Demo/ScreenCodes"); TS("ScreenCodes"); TSFileChar("::/Demo/ScreenCodes");
TS("ExtChars"); TSFile("::/Demo/ExtChars"); TS("ExtChars"); TSFile("::/Demo/ExtChars");
TS("PanText"); TSFile("::/Demo/Graphics/PanText", 0); TS("PanText"); TSFile("::/Demo/Graphics/PanText", 0);
TS("CharAnimation"); TSFile("::/Demo/Graphics/CharAnimation"); TS("CharAnimation"); TSFile("::/Demo/Graphics/CharAnimation");

View file

@ -1156,7 +1156,7 @@ rc_adjust_xy:
dc->bkcolor = i; dc->bkcolor = i;
if (doc_e->de_flags & DOCEF_FROM_START) 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; yy = (y - y0) * FONT_HEIGHT;
zz = 0; zz = 0;
} }