The 68000 is a 16/32 bit CISC CPU, originally designed by Motorola, Inc.

learn more… | top users | synonyms

0
votes
1answer
62 views

Hi, need a little help understanding Motorola in assembler

If I have: 0000 3304 alpha: dc.w 5,16,4,-2 and my instruction is: sub.w alpha+2,D0 Is my alpha at 0000 33004 or is it at 00 05 00 01 00 04 FE?
-3
votes
0answers
46 views

practice example-What is the output from the following code? [closed]

Show the output from the following code: (assembler Motorola 68k)? move.b alpha,D1 move.b beta,D2 cmp.b D1,D2 bgt next lineout one bra done ...
-2
votes
0answers
128 views

68k assembly program, Write a 68000 program [closed]

my question is: Write a 68000 program to run on the Teesside 68K simulator that: performs the following sequence of operations: inputs a single ASCII-encoded numeric character converts the ...
1
vote
1answer
40 views

Assembly language move.l p, -(A3)

I'm learning assembly language (m68000). I don't understand the following syntax move.l p, -(A3) What's the difference between this and the following? move.l p, (A3)
3
votes
3answers
89 views

Converting hexadecimal HTML-color to Amiga colorregister hex (and back)

HTML hexadecimal colors are written with 6 digits (3 bytes, a so called, A hex triplet). The Amiga's color registers takes a word (2 bytes, 16-bits) which defines a color. Example: Yellow - HTML ...
0
votes
1answer
79 views

Summing 2-dimensional array in EASy68K assembly

100x100 array A of integers, one byte each, is located at A. Write a program segment to compute the sum of the minor diagonal, i.e. SUM = ΣA[i,99-i], where i=0...99 This is what I have so far: LEA ...
0
votes
1answer
61 views

File IO and the buffer

I want to read numbers from a file, but when I do is everything read from the file put into the buffer? Or only 1 number? File would contain 5 6 7 10 9 This would be what I'm using to read from the ...
2
votes
2answers
85 views

Storing an array into another array

I'm trying to copy array A into array N and then print the array (to test that it has worked) but all it outputs is -1 Here is my code: ORG $1000 START: ; first instruction ...
1
vote
1answer
89 views

How to store unknown number of numbers

What I'm trying to do is read from a file which only has positive integers, then sort the integers and output them. The problem is that I don't know how many lines (each line has a number) the file ...
1
vote
1answer
79 views

MC68k assembler address syntax

I'm trying to write a program that will take an 8-bit value and write it to D0. It will then be masked into a 4-bit value. The number I get is supposed to access a number in A0 and write it to D1. ...
4
votes
2answers
161 views

68k assembly - plus symbol on address registers

While reverse engineering something for fun, I came across the following piece of assembly: move.b (a1)+,(a0)+ I understand that the parentheses mean 'value of', but what does the plus symbol ...
-1
votes
1answer
90 views

How to make a code block for 68k?

I'm writing a program for 68k processor in ASM. And I need to make something like that if (D0 > D1) { do_some_stuff(); do_some_stuff(); do_some_stuff(); do_some_stuff(); } else { ...
0
votes
2answers
191 views

CCR on the 68000

So i was asked an assembly question from a friend who is also trying to learn and understand the language. He asked: Given the following register values: D0: 364B 421E D1: F3FC 9066 after ...
-2
votes
1answer
258 views

Translate Java Code into PseudoCode

How might i translate the Java Code below in PseudoCode for assembly language using the Motorola 68000: if(x > y && y < 100) { x++; y--; } // end if else if(x < y) { ...
2
votes
2answers
259 views

Assembly Language Brute Force

So i am working on an assembly language program to determine the optimum dimensions of a closed cylindrical can, such as those used for canning food products. There are three input variables, which i ...
0
votes
1answer
113 views

Logic Expression in 68000 assembly

I posted earlier inquiring how to define hex constants for this program, which someone helped me out with, and now I'm trying to figure out if this program is running correctly. The program is ...
0
votes
1answer
136 views

Define Hex Constant (68000)?

How do I define a hex constant in 68000 assembly? I need to compute the logic expression X'Y + X'Z + YZ, where X, Y, and Z are hex constants, and the result is displayed in binary. I wrote the code to ...
0
votes
2answers
496 views

Assembly Motorola 68k, how to branch if a tested bit is zero?

I am writing a program in assembly using easy68k, I was looking for a way to make a branch if a tested bit is equal to zero [Z=0 in SR]. I searched a lot but didn't get an answer, for example, I ...
1
vote
2answers
201 views

Doing the mod of a pointer variable in C

I am using embedded C for motorola 68000 microprocessor. I want to store the pointer address in a uint16 variable and then, want to do the mod of the variable. My main reason for doing this is to ...
3
votes
2answers
540 views

Converting my solution from decimal to Hex

My goal is to display the solution of 2 numbers entered by the user in Hexadecimal. As of right now my code gets 2 numbers from the user, then returns the solution in decimal. What i think i should ...
0
votes
2answers
350 views

Having trouble finding error in my assembly code

I am a beginner when it comes to assembly language. I am using "easy 68k editor/assembler" to write 68k assembly code that asks the user for 2 values, then sum them up together and display it. The ...
2
votes
1answer
119 views

What will the instruction “move #>$3,var” mean in 68k assembly?

What will the instruction move #>$3,var mean in 68k assembly ?
2
votes
2answers
358 views

Cycle accurate emulation

I'm currently learning C for my next emulation project, a cycle accurate 68000 core (my last project being a non-cycle accurate Sega Master System emulator written in Java which is now on its third ...
0
votes
1answer
205 views

Why address register postincrement is (A0)+

Basically in the assembly language of 68000 to postincrement an address register you have to do: (A0)+ Example MOVE (A0)+,D0 This will move into D0 the value pointed by address of A0 and also ...
1
vote
3answers
316 views

Difference between LEA and MOVE.L?

Are there any differences between LEA $1000,A0 and MOVE #$1000,A0 to put an address in the address registry ?
1
vote
1answer
125 views

68k understading EQU X+$10

Let's say I have this 2 lines of code: ORG $8100 X DC 1,2,3,4,5,... EX EQU X+$10 What does X+$10 mean? (On motorola 68000)
1
vote
1answer
521 views

68000 DC.W (Define Constant)

I have this line of code: X DC.W 5 This means basically X = 5 But shouldn't be X DC.W #5 ? When using MOVE I need always # MOVE.B #1,VAR
3
votes
2answers
362 views

68k Assembler on OS X Lion

I need to do some programming stuff in assembler for the 68k for my college class. I'm looking for a programm to do it on os x lion. I found easy68k which is running in wine, but I have the feeling ...
3
votes
1answer
282 views

I'm having trouble getting this addition subroutine to work

I am writing an addition program for my assembly language class in Easy68k but I keep having the same issue. Whenever I run the program it allows me to input up to 10 numbers (the allotted size of my ...
0
votes
1answer
340 views

MC68000 assembly multiplication

Say we have the following: MOVE.L #$1234ABCD,D0 MOVE.L #$45670012,D1 MULS D0,D1 What will be the value of D1? According to a mc68000 simulator, it will be FFFA146A. According to the book, the two ...
2
votes
1answer
252 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 ...
0
votes
1answer
249 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 ...
2
votes
1answer
774 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
1k 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 ...
0
votes
2answers
113 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 ...
8
votes
2answers
192 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 ...
1
vote
2answers
267 views

I keep receiving and address error for my assembly language

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 ...
4
votes
1answer
481 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 ...
9
votes
1answer
728 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 ...
2
votes
1answer
371 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 ...
4
votes
2answers
652 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
343 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 ...
1
vote
1answer
438 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 ...
2
votes
3answers
695 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 ...
5
votes
1answer
338 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 ...
2
votes
1answer
863 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, ...
3
votes
4answers
537 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 ...
0
votes
3answers
246 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 ...
1
vote
1answer
2k 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
465 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 2