Tagged Questions
2
votes
1answer
53 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 ...
1
vote
1answer
944 views
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
...