1
vote
4answers
68 views
audio to 8-bit text sample conversion
Hello community. I have an interesting question today.
I need to convert some pokemon audio files to a list of 8-bit samples (0-255 values). I am writing an assembly routine on the MC6800 chipset …
1
vote
3answers
77 views
Where can I find assembler instruction specification info for the Motorola 68000?
I'm looking for information for machine language instruction encoding formats for the Motorola 68000 processor. I have used the The Motorola Mc68000 Microprocessor Family: Assembly Language, …
1
vote
7answers
246 views
Programming Environment for a Motorola 68000 in Linux
Greetings all,
I am taking a Structure and Application of Microcomputers course this semester and we're programming with the Motorola 68000 series CPU/board. The course syllabus suggests running …
0
votes
3answers
196 views
What does the ORG directive do in assembly code?
For reference, the code is for the motorola 68008.
Say I have code such as the following:
org 200
sequenceO: ds.b 5
sequenceN: ds.b 5
move.w #sequenceO, A0
move.w #sequenceN, A1
Am I correct in …
-1
votes
3answers
214 views
MC 68000 Register question
please can someone tell how i will approach this Question..thanks
The contents of selected registers and memory locations are specified as follows; D1:2; D3:$80A3; D4:$91EF; D4: $91EF; …
-2
votes
2answers
127 views
Shift operation on MC68000
I'm using shift operations to divide a long word in register D3 by three and storing the result in memory address specified by A2:
MOVE.L D1, D2, D3, -(SP)
CLR.L D5
MOVE.B …
-2
votes
1answer
191 views
MC68000: Divide by 3
I'm using shift operations to divide a long word in register D3 by three and storing the result in memory address specified by A2:
Move.L D1, D2, D3, -(SP)
CLR.L D5
MOVE.B #1, D4
…
