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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
09/06/07 16:10
Read: times


 
Msg Score: +1
 +1 Good Question
#144088 - Bug ??
Responding to: ???'s previous message
The following program assembled with ASEM-51
var1	equ	1ch
var2	equ	0ffh
	org	30h
	mov	var1,var2
	mov	var2,var1
	END

The List file:
 Line  I  Addr  Code            Source

    1:		N      001C	var1	equ	1ch
    2:		N      00FF	var2	equ	0ffh
    3:		N      0030		org	30h
    4:	  0030	85 FF 1C		mov	var1,var2
    5:	  0033	85 1C FF		mov	var2,var1
    6:					END

Intel Hex File:
:0600300085FF1C851CFF8A
:00000001FF

Command Line Used: d52.exe test2 /D/U
No Control File (.ctl) used.
Output:
;
;  D52 V3.4.1 8052 Disassembly of test2.hex
;  2007/09/06 10:56
;
	ORG	30H
;
	MOV	RB3R4,T3	; 0030   85 ff 1c   ...
	MOV	T3,RB3R4	; 0033   85 1c ff   ...
;
;	Register/Memory Equates
;
RB3R4	EQU	1CH
;
	END
;


What's T3 ?

Jon

List of 11 messages in thread
TopicAuthorDate
D52 v3.4.1            01/01/70 00:00      
   Thanks!            01/01/70 00:00      
   and decimal?            01/01/70 00:00      
   Bug ??            01/01/70 00:00      
      T3            01/01/70 00:00      
         80c552            01/01/70 00:00      
         the struct sfrentry sfr[128]            01/01/70 00:00      
            the real stuff would be...            01/01/70 00:00      
            SFRs            01/01/70 00:00      
               Do you think this is better...            01/01/70 00:00      
               cooking C-header files to generate ctl files?            01/01/70 00:00      

Back to Subject List