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, ...
0
votes
1answer
31 views
m68k Hex to Decimal not working right
I'm writing a small OS for a M68k computer that I'm developing, and I've ran into a little issue. I need to be able to show the user a hexadecimal value (say $1F) in decimal (31.) I've written the ...
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 ...