Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@rinoobp-IpmTN3 • Mar 13, 2010
C Programming Language is a powerful Language which can access the H/W directly through Assembly language or through built in functions (Library functions).
If you wanna embed assembly code in C, You jest use the keyword asm.
eg:-
if you wanna display Mouse in user screen on run time try this in your program.....
asm mov ax,1
asm int 0x33 -
@madangopal99-cHB5VI • Mar 14, 2010
'C' is the best programming language for Embedded system. Try to use as may as libraries to make your code simple. The latest compliers produce very optimized code for 'C' program. Since lots of new microcontrollers and 32 bit microcontrollers are becoming as cheap as 8 bit microcontroller it is wise to use 'C' language program than the assembly language program.