mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
Fix a few formatting errors and typos.
This commit is contained in:
parent
b992dcebb2
commit
8951ce2445
5 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue