Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/21/00 11:26
Read: times


 
#1912 - RE: Access external ROM from C
with Micro-C 51 do this
--------------------------------------
/* demo1.c */
#include mc8051io.h

main()
{
unsigned char data;
serinit(9600);
data=peek(0x000);
printf("DATA mem at 0x0000 = %d", data);
data++;
poke(0x0000,data);
data = 0;
data = peek(0x0000);
printf("Data mem at 0x00 = %d", data);
while(1);
}

----------------

. . . . compile with
cc51 demo1.c -io m=t
... you must change something ... but I think you can do :) good luck

List of 4 messages in thread
TopicAuthorDate
Access external ROM from C            01/01/70 00:00      
RE: Access external ROM from C            01/01/70 00:00      
RE: Access external ROM from C            01/01/70 00:00      
RE: Access external ROM from C            01/01/70 00:00      

Back to Subject List