Jump to content
IGNORED

OUTATIME (Dragster Hack)


keebz

Recommended Posts

I agree, I'm trying to decipher assembly but man it's still functionally greek to me. I've read and am re-reading the posted tutorials but it's just really cloudy.

 

Not giving up though.

 

You don't really need to understand much to modify the graphics in the asm. Really you just need to know how to assemble it to a .bin so you can test it. Have you tried the following?

 

1. Open the .asm I attached in my previous post in a text editor of your choice.

2. search for MPH

post-40226-0-88426600-1519048751.png

3. change the 1's and 0's to produce the desired MPH graphic and save the asm file.

4. Assemble with dasm. There's a bunch of ways to do this. This simplest is to call dasm from the command line with the path of the asm file. On windows I use a small batch file which assembles it and then runs it.

SET progpath=%~dp1
SET fileName=%~n1

dasm.exe  "%progpath%%fileName%.asm" -f3 "-o%progpath%%fileName%.bin" "-l%progpath%%fileName%.lst" "-s%progpath%%fileName%.sym" -v5

"%progpath%%fileName%.bin"

but you can get away with just running

dasm.exe  "C:\path\file.asm" -f3 "-oC:\path\file.bin"

Link to comment
Share on other sites

  • 2 weeks later...

Just now getting back into this. I understand how to add the mph. What I don't understand is how to use the added 2k for a title screen and a vanishing delorean effect. Been researching and there seems to be very little information on beginner's asm hacking.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...