• including assembler file into C project
    Hi all, I have to include an ASM file into my C project, this ASM file cannot be modified since it is also a part of another project using this same file. the ASM file is asm_inc.h and contains only...
  • Including a .SRC file to assembly
    Hello, I am trying to compile an assembly file and am not sure if I am using the REG932.SRC file correctly. I created the 932.SRC from REG932.H and then inserted the line $include (REG932.SRC) in my ...
  • Include files in assembly...
    Hi all, I have two files,as follows...when I simulate the sub routine is never executed. file 1(main.asm) #include "rs_485.asm" org 0000h ljmp on_reset org 002bh on_reset: mov ie,#00h...
  • include a c function within an assembler project
    Hi all, I have a project (in uv2) with 3 differents asm files. The first one (BIOS) is located in the lower part of CODE MEMORY between 0x0000 and 0x03FF, the second one (APP) is located between 0x0400...
  • Problem when .c file is directly included in another file using #include
    I have a Keil uv2 project which has two .c files namely main.c and add.c. The file main.c has function main. The add.c file has definition of function add. In main.c I included add.c using include statement...