Tagged Questions
6
votes
6answers
1k views
Writing an OS for Motorola 68K processor. Can I emulate it? And can I test-drive OS development?
Next term, I'll need to write a basic operating system for Motorola 68K processor as part of a course lab material.
Is there a Linux emulator of a basic hardware setup with that processor? So my ...
1
vote
4answers
520 views
Passing parameters on the stack
When you pass parameters to a function on the cpu stack,
You put the parameters on then JSR puts the return address on the stack.
So that means in your function you must take the top item of the ...
0
votes
1answer
33 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
1answer
268 views
Assembly 6800 Looping? Testing specific bits in a word
Trying to help a friend out with a friend out with some assembly code, but I've run into a small problem.
I'm trying to work out how I would loop through a 8 bit binary word and check the value of ...