Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I'm writing the program, but actually what means by : org, setb, seta, inc etc???/ suppose they are commands but what they stand for or what they do??Try this little bit of code for starters
You need to toggle P2.0 by inserting directly into the SFR window at
the bottom of the screen
Try this little bit of code for starters
I think ( Its my opinion ) that the paged memory is the biggest issue on the PIC.. ( I'm talking mainly about the 8 bit systems)
That was a nice tutorial for beginner. Are you going to add in lessons and chapters as time goes on and publish it as a full tutorial ?
I don't mind to become another beginner to relearn 8051 from fresh as I have forgotten most of them already. My old 8051 board has a monitor program inside and communicate with the PC via COM port. I used the ASM51 and MSKermit to talk to the 8051 board.
Allen
Hello Ian,
what the code you posted last day is working on simulation.
i want to say that : the code or program you posted in pdf file for me as a tutorial, is working in the simulator.....Sorry!! I don't understand?
Oh good... Tell me what you want to do next... I'll try and give you a lift up!!
flags equ 0x20
setb flags.0 ; access bit 0 of the flags variable
what does it mean by? truly I'm really can't understand this... As far as I know the bit addressable memory and the SFR has their own different locations.. some registers are bit addressable?????????Bit addressable are SFR's locatioons 0x80 to 0xF0
flag equ 24
mov flag,#0xFF ; move 0xFF into flags <<-- byte addressing
clr flag ; clear flags
setb flag.1 ; set bit 1 in flags <<-- Bit addressing
Hi Ian,
is there anything to have a look for me... ?