• Standard C mathematical functions
    Just to confirm, does anyone know if the Keil tool supports standard C mathematical functions? I am trying to use the floor( ) function.
  • Inline Assembly & Interrupt Functions
    Hello, 1) I want to place assembly code in my C code. The problem with using SRC is that I would have to rename the file MyAsm.SRC to MyAsm.A51 and then (remove C code from project) include A51 code...
  • Load function in assembly
    If I have the address of particular function, is it possible load the function in assembly? I understand that usually the function is loaded as LCALL _function but I was wondering whether it...
  • Question for Assembly function "LMUL"。
    Dear sir, i use lmul to do "0x12345678 * 0xff = 0x12,22,22,21,88" if i need the overflow value "0x12" what can i do ? thanks a lot . Sincerely, Luke.
  • adding assembly code in C function
    hello i have written code in following way void fonction1(void) { TMOD = (TMOD | 0x20); SCON0 = 0x50; asm { MOV SCON1,#40h } SCON1 = 0x40; } at the time of Build target it is showing error "...