Tagged Questions

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
114 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
242 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 ...
4
votes
2answers
446 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
59 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
2answers
128 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
735 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
4answers
580 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
52 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
66 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
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
261 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
115 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
487 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
204 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
518 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
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