• asembly prog is not working
    RAM location 47 to 52 have data 1,2,3,4,5,6 average to be taken and result in reg r3 mov r1,#06h Counter mov b,#06h Divisor mov r0,#47h mov a,@ro L1 add a,@r0 inc r0 djnz r1,L1 div ab mov...
  • Including asembly header file in C project
    Please, How to include an asembly header file in a C Project? Thanks.
  • About asemble language and its encoding rule
    In infenion Instrction set manual,there are 2 instrctions as follow, MOV Rwn, #data4 E0 #n 2 MOV reg, #data16 E6 RR ## ## 4 where Rwn refers to Word GPR (R0, R1, …, R15); reg refers to SFR/ESFR or...
  • respondo preguntas relacionadas con programas en ASEMBLER en español.
    Respondo preguntas relacionadas a la programacion en asembler.
  • How Keil asemble the "MOV r9,#0"instruction?Thanks a lot.
    why the instruction "MOV r9,#0" is understood by Keil as "MOV Rw,#data4",that is, its machine language is transfered as "E0 #n",which is only 2 bytes;yet I get the machine language "E6 RR ####" anciently...