4
votes
2answers
62 views
How to make 8051 emulator
For learning purpose i intend to start building a 8051 microcontroller emulator. I am comfortable programming in C/C++/C#. This is no class project etc but a learning initiative from my side.
I did …
0
votes
2answers
350 views
Interface usb to 89s52 ( 8051 ) microcontroller
How do i interface an usb to microcntroller 89s52 ? can i get the circuit diagram itself ? And also the logic behind the transmission and reception of bits ?
Thnxx
1
vote
2answers
91 views
Micro-controller 8051: How to get addresses of inputs to JB & CJNE instructions?
I'm implementing whole set of 8051 instructions in VHDL from scratch. Most of things went well but stumbled on these 2 instructions:
JB bit,rel
00100000 bit_address rel_address
CJNE A,#data,rel
…
4
votes
2answers
116 views
How do I continuously send and receive with wireless serial-port in 8051?
Hello everyone!
I'm trying to make a microcontroller communicate with a program on my desktop. I'm using serial port connections with Xbee radios on both ends.
The communication works fine when I …
0
votes
0answers
119 views
THE COUNTDOWN TIMER [closed]
i was wondering if you could help me with a program, which is to create a countdown timer using 8051 controller which display it on LCD board.The software that i had is M-IDE studio for MCS-51.
The …
2
votes
5answers
252 views
What is the best C compiler for the 8051 family?
We are starting a new project based on an 8051 microcontroller.
Questions:
What is the best C compiler to use?
Are there any open source 8051 compilers and how good are they?
3
votes
5answers
289 views
How can I send a string serially from an 8051 only ONCE?
Hello everyone,
I am making an 8951 microcontroller communicate wirelessly with a computer. The microcontroller will send a string to its serial port (DB9) and the computer will receive this string …
11
votes
10answers
530 views
Unravelling Assembly Language Spaghetti Code
I've inherited a 10K-line program written in 8051 assembly language that requires some changes. Unfortunately it's written in the finest traditions of spaghetti code. The program--written as a single …
4
votes
10answers
576 views
C++ for 8051 microcontroller?
Hi all,
Could someone please tell me if it's possible to burn an 8051 microcontroller with a C++ program?
I've tried searching about it online but can't seem to find out for sure if it's possible or …
4
votes
9answers
415 views
How do I mark code with side effects?
I'm working on a project on an 8051 where every byte counts. As such, I am using some global variables where I normally wouldn't. The normal method of passing pointers into a function adds too much …
2
votes
7answers
455 views
What techniques are available for memory optimizing in 8051 assembly language?
I need to optimize code to get room for some new code. I do not have the space for all the changes. I can not use code bank switching (80c31 with 64k).
