Tagged Questions

4
votes
8answers
2k 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 ...
3
votes
3answers
317 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
4answers
740 views

audio to 8-bit text sample conversion

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 that will require ...
0
votes
2answers
78 views

I keep receiving and address error for my assembly language, help?

So I am creating an assembly language for the following: X = 5 Y = 7 FOR I = 1 TO 9 Y = Y + I IF T(I) = J(I) + X THEN J(I) = T(I) * 4 - Y ELSE J(I) = J(I) - T(I) END_FOR ...
0
votes
3answers
104 views

How to update address register?

Edit: made clearer Hi everyone. I'm using Easy68k to emulate the 68000 microprocessor. I'm doing a simple program which includes a while loop. Assume the register A0 is pointing to my data, which ...
0
votes
4answers
532 views

random number generation

How to generate random numbers using assembly code in the range 1--4 ?
0
votes
3answers
2k 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 ...