Tagged Questions

The 68000 is a 16/32 bit CISC CPU.

learn more… | top users | synonyms

11
votes
3answers
220 views

What is on the 68000 stack when classic MacOS enters a program?

I'm trying to understand an old classic Mac application's entry point. I've disassembled the first CODE resource (not CODE#0, which is the jump table). The code refers to some variables off the stack: ...
8
votes
2answers
115 views

68040 Takes Wrong Branch of If Else

Any good 68k assembly programmers out there?? I'm using a commercial Green Hills compiler for a Motorola 68040 and I'm seeing some very strange behavior from the code. Sometimes, the code will do an ...
6
votes
1answer
243 views

Help with 68k assembly - jump tables?

I'm working on reverse engineering a large Amiga program in IDA, and I've made a ton of progress. However, there is some stuff I can't quite figure out. Namely, I have found several subroutines which ...
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 ...
5
votes
1answer
216 views

68000, portable JIT library

There are several JIT libraries, but is there any which emits Motorola 68000 style instructions, such as for instance 68000, 68040, 68060 or any of the Coldfire CPUs? Bonus points if it could emit ...
4
votes
2answers
451 views

Do different 68k simulators have different TRAP tasks?

I've been revisiting Motorola 68000 programming lately. Admittedly, when I took the course I just did what was necessary to pass (and had a horrible professor)...but NOW I'm actually interested in the ...
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
1answer
61 views

Divide (DIVS) not working on jack crenshaw's let's build a compiler

I am following the excellent Let's Build a Compiler tutorial by Jack Crenshaw found at http://compilers.iecc.com/crenshaw. I am testing the generated 68k assembly with the Easy68k ...
3
votes
1answer
123 views

Decoding 68k instructions

I'm writing an interpreted 68k emulator as a personal/educational project. Right now I'm trying to develop a simple, general decoding mechanism. As I understand it, the first two bytes of each ...
3
votes
2answers
129 views

Burst Mode Definition

I was reading up on computer organization and in the Memory chapter it mentions that "SDRAMS have several modes of operation, for example burst modes of different lengths can be specified." Can ...
3
votes
2answers
155 views

68k register addresses

This question is begging for a bunch of "why are you doing this?" responses. I haven't been able to find this information in the 68k Programmer's Reference Manual, but that may be because I'm not ...
3
votes
3answers
736 views

Left Shift Overflow on 68k/x86?

I heard that the Motorola 68000 and Intel x86 architectures handle overflow from left shifting differently. Specifically the 68k LSL vs. the Intel SAL/SHL assembly instructions. Does anyone know the ...
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, ...
3
votes
7answers
469 views

What ancient, old school code do you still have kicking around?

Having been bored out of my brains the last few days off work sick, I decided to try and dig up some old code. I could find some binary versions of some ancient Atari ST stuff I wrote, but I couldn't ...
3
votes
2answers
246 views

How can I segment my Palm OS 68K application?

If you have an 68K application written using CodeWarrior for Palm OS, how do you assign individual functions to different segments without manually moving files around in the segment tab in the IDE?
3
votes
4answers
581 views

What was the name of the Mac (68000) assembler?

I'm sure there were several, but the one I was thinking of would display a nice text screen when you crashed the computer thoroughly. The Text was "Well smoke me a kipper."
2
votes
1answer
54 views

Assembly Random Number within Range using Easy 68K (68000)

I'm creating a simple black jack game using the Easy 68K simulator and need to use a random number to assign the cards. My cards must be in the range 2 to 11. I seem to be getting the same number ...
2
votes
1answer
69 views

Insert a line break into Assembly code Easy 68k (68000)

I am very new to assembly, and I'm trying to build a small program. I can't figure out how to insert a line break in assembly using the Easy68k. For example, I am starting to write basic black jack ...
2
votes
3answers
204 views

Easiest way to merge 2 or more ELF files

I'm working on some embedded code for a class project that currently (per requirements) creates a number of srec files and merges them. I'd like to be able to load this code into QEMU, but it is ...
2
votes
1answer
390 views

How do I implement floating point IEEE754 division in 68k assembly or in general?

I have to create a floating point implementation for a 68k processor in IEEE754 format, and I've figured out how to do all the other basic operations (conversion from decimal, addition, subtraction, ...
2
votes
4answers
263 views

basic M68000 question, Neo Geo - related

I want to write a program in Motorola 68000 assembler, the target platform is Neo Geo (games console from the nineties); this question is meant serious, I have a specific project which I want to ...
1
vote
1answer
93 views

OS response to page fault

When a page fault occurs the MMU raises and exception (interrupt). The OS stops the current processes and addresses this raised interrupt. 1) Does this mean that (for 68K architecture where there ...
1
vote
1answer
117 views

How does the carry flag work on the 68000?

So I'm a bit confused about how the carry flag works, specifically on the 68000 processor (but it may not matter). My main question is as follows: move.b (a0),d0 moveq #7,d1 cmp.b d1,d0 bcc.s ...
1
vote
1answer
488 views

Basic for-loop in 68k assembly?

I'm attempting to write a program which requires the use of a for-loop, among other things. I am having a terrible time trying to find examples of basic code such as this on other websites. If ...
1
vote
1answer
205 views

How do you store a decimal number with a fraction?

if I want to store 10.125 how is it done? I have this: ORG $1000 DN DC.L 10.125 END $400 and in the debug it is stored as: 00001000= 0000000A That doesnt seem to ...
1
vote
4answers
519 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 ...
1
vote
1answer
277 views

Mergesort for easy68k

has anybody done a merge sort in m68k? Thanks. John
1
vote
1answer
944 views

sorting number using easy68k

how to sort number in descending order by using easy68k?
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
74 views

Alignment of functions

How do I make the functions align at 4-byte boundaries with GCC, target 680x0? -malign-functions=4 does not seem to do the trick, by itself anyway. Some kind of option meant to improve cache ...
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
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 ...
0
votes
1answer
103 views

How do you Echo Data?

Is there a way to echo DATA in 6800 assembly? If I have it stored like this: DATA DC.W 1,2,3,9,8,7