* moved the assembler declaration in PutPixel320 and GetPixel320 to be on the same line as the procedure/function declaration

git-svn-id: trunk@41116 -
This commit is contained in:
nickysn 2019-01-29 13:17:22 +00:00
parent 45ea95b72e
commit 6a1adc31fc

View File

@ -2281,9 +2281,8 @@ End;
Procedure PutPixel320(X,Y : smallint; Pixel: Word);
Procedure PutPixel320(X,Y : smallint; Pixel: Word); assembler;
{ x,y -> must be in local coordinates. Clipping if required. }
assembler;
asm
{# Var X located in register ax
# Var Y located in register dx
@ -2316,8 +2315,7 @@ End;
end;
Function GetPixel320(X,Y: smallint):word;
assembler;
Function GetPixel320(X,Y: smallint):word; assembler;
asm
{# Var X located in register ax
# Var Y located in register dx }