ucos compiler download
You can compile Ucos by Turbo C 3.0
The source code we need are:
the entire Source fold:
OS_CORE.C OS_FLAG..C OS_MBOX.C OS_MEM.C OS_MUTEX.C OS_Q.C OS_SEM.C OS_TASK.C OS_TIME.C uCOS_II.c uCOS_II.H
OS_CPU.H OS_CPU_A.ASM OS_CPU_C.C (x86L)
INCLUDE.H OS_CFG.H PC.H PC.C
and a TEST.C which can be a example from the ucosii books or simple code written by yourself.
Then create a new project in TurboC3 and add the OS_CPU_A.ASM,OS_CPU_C.C,uCOS_II.C,PC.C andTEST.C to the new project.
do some changes in INCLUDE.H,remove “OS_CPU.H uCOS_II.H PC.H OS_CFG.H” all these four file's path if you have put these four files at the same place with test.c
do the same change with uCOS_II.C
At last we need a TASM.exe ,you can get it from TASM or BC3 or 4.5
put it to where the project(.prj) is.
at the same time ,you need to copy a TASM2MSG.EXE from Turboc's bin fold to the project fold.
change the compile options to the large mode in the options menu
and you can compile it.
[/img]