CMD8

Top  Previous  Next

Action

This statement will send a byte to the FT800 graphic processor.

 

 

Syntax

CMD8  prm

 

 

Remarks

CMD8 expects a numeric parameter. It will call the _cmd8 assembler code in FT800.LIB

 

 

See also

CMD16 , CMD32 , WR8 , WR16 , WR32

 

 

Example

Sub Cmdinflatex(byval Ptr As Dword , Byref Varaddress As Word , Byval Count As Dword)
 
  Local Length As Dword
 
  Cmd32 Cmd_inflate
  Cmd32 Ptr
 
  For Length = 1 To Count
     Tb = Cpeek(varaddress)
     Cmd8 Tb
    Incr Varaddress
  Next
 
  Alignfifo Count
 
End Sub