Skip to content

Commit

Permalink
make firmware/dsp56k/bootstrap.asm buildable on a56
Browse files Browse the repository at this point in the history
Make firmware/dsp56k/bootstrap.asm buildable on a56, the free Motorola
DSP56001 assembler (http://www.zdomain.com/a56.html).

Summary of changes:

  - Remove '<' and '>' candy (they specify explicit addressing modes,
    which a56 don't grok, but uses implicitly anyway).

  - Replace 'move' with 'movem' when accessing program memory.

  - Rename a few labels to avoid duplicates (which a56 can't handle).

Signed-off-by: Robert Millan <[email protected]>
Cc: Jaswinder Singh <[email protected]>
Cc: David Woodhouse <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Robert Millan authored and torvalds committed Jan 6, 2009
1 parent 4c2c3b4 commit 842ffab
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions firmware/dsp56k/bootstrap.asm
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ start jmp <$40
; Copy DSP program control
move #real,r0
move #upload,r1
do #upload_end-upload,<_copy
move P:(r0)+,x0
move x0,P:(r1)+
_copy movep #>4,X:<<M_HCR
movep #>$c00,X:<<M_IPR
do #upload_end-upload,_copy
movem P:(r0)+,x0
movem x0,P:(r1)+
_copy movep #4,X:<<M_HCR
movep #$c00,X:<<M_IPR
and #<$fe,mr
jmp upload

real
org P:$7ea9
upload
movep #>1,X:<<M_PBC
movep #>0,X:<<M_BCR
movep #1,X:<<M_PBC
movep #0,X:<<M_BCR

next jclr #0,X:<<M_HSR,*
movep X:<<M_HRX,A
Expand All @@ -81,18 +81,18 @@ _get_length
cmp x0,A
jeq load_Y

load_P do y0,_load
load_P do y0,_load_P
jclr #0,X:<<M_HSR,*
movep X:<<M_HRX,P:(r0)+
_load jmp next
load_X do y0,_load
_load_P jmp next
load_X do y0,_load_X
jclr #0,X:<<M_HSR,*
movep X:<<M_HRX,X:(r0)+
_load jmp next
load_Y do y0,_load
_load_X jmp next
load_Y do y0,_load_Y
jclr #0,X:<<M_HSR,*
movep X:<<M_HRX,Y:(r0)+
_load jmp next
_load_Y jmp next

upload_end
end

0 comments on commit 842ffab

Please sign in to comment.