Search

Turbo51 - Free Pascal compiler for 8051

Search Only:

Search Keyword lcall

Total: 9 results found.



1. 8051 Instruction Set
(Documentation/8051)
...  INC INC INC INC INC INC 10 JBC ACALL LCALL RRC DEC DEC DEC DEC DEC DEC DEC DEC DEC DEC DEC DEC 20 JB AJMP RET RL ADD ADD ADD ADD ADD ...
2. 8051 Opcodes
(Documentation/8051)
...  addr11 12 3 LCALL addr16 13 1 RRC A 14 1 DEC A 15 2 DEC direct 16 1 DEC @R0 17 1 DEC @R1 18 1 DEC R0 19 1 DEC ...
3. 8051 Assembler Procedures
(Documentation/Procedures)
...  Code to write number in Result variable end; begin Asm MOV DPTR, #DemoString LCALL WriteString MOV DPTR, #String0 LCALL WriteZeroTerminatedString  ...
4. Inline Procedures
(Documentation/Procedures)
...  MOV R3, #HIGH ($001A) LCALL sysRandomWord MOV A, R2 ADD A, #LOW ($0061) MOV Character, A ; DataRecord1.Ch0 := ...
5. Turbo51 Objects
(Documentation/General)
... begin ; // Code to draw pixel ; end; RET ; ; Procedure TLocation.Init (InitX, InitY: Word); TLocation_Init: ; begin MOV R0, #0 LCALL sysEnterMethod ; ...
6. Turbo51 Files
(Documentation/General)
... Char; Var ByteResult: Byte absolute Result; begin While not RI do; RI := False; ByteResult := SBUF; Asm MOV A, Result LCALL WriteToSerialPort end; end; Procedure Init; begin ...
7. System Unit
(Documentation/General)
... library which contains the system unit compiled with the $A+ switch and has no LCALL/LJMP instructions (to use it use the /LA command line option). Warning: until the compiler will reach some more stable ...
8. 8051 Assembler statement
(Documentation/Assembler)
...  A, #$FF MOV RX_CRC, A MOV StoreData.CRC, A MOV StoreData.ReadPointer, DPL MOV StoreData.ReadPointer + 1, DPH LCALL StoreData end;  ...
9. 8051 Code Examples
(Uncategorised Content)
...  JNB TI, @WaitLoop end; Function ReadFromSerialPort: Char; Var ByteResult: Byte absolute Result; begin While not RI do; RI := False; ByteResult := SBUF; Asm MOV A, Result LCALL ...