Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sonicretro/skdisasm
base: a34aace96b2d
Choose a base ref
...
head repository: sonicretro/skdisasm
compare: 7939a02d5682
Choose a head ref
  • 2 commits
  • 32 files changed
  • 1 contributor

Commits on May 26, 2015

  1. Making build.py wait before closing after verifying

    This is so users that run the script from Explorer won't have the window
    close before they can read it.
    Clownacy committed May 26, 2015
    Copy the full SHA
    0d79b44 View commit details
    Browse the repository at this point in the history
  2. Managing debug object lists with macros

    Significant regular expressions used include...
    
    dc.l (.*)\+(.*)000000\r\n\t\tdc.l(.*)\+(.*)000000\r\n\t\tdc.w(.*\r)
    dbglistobj \1,\3,   \4,   \2,\5
    
    dc.l (.*)\+(.*)000000\r\n\t\tdc.l(.*)\r\n\t\tdc.w(.*\r)
    dbglistobj \1,\3,   0,   \2,\4
    
    dc.l (.*)\r\n\t\tdc.l(.*)\+(.*)000000\r\n\t\tdc.w(.*\r)
    dbglistobj \1,\2,   \3,   0,\4
    
    dc.l (.*)\r\n\t\tdc.l(.*)\r\n\t\tdc.w(.*\r)
    dbglistobj \1,\2,   0,   0,\3
    
    (.*, )\$
    \1make_art_tile\($
    
    \r
    ,0,0\)\r
    Clownacy committed May 26, 2015
    Copy the full SHA
    7939a02 View commit details
    Browse the repository at this point in the history