├── .gitignore ├── README.md ├── SONLVL ├── Common │ ├── CaterkillerMappings.asm │ ├── EggPrison.xml │ ├── FireballSpawner.xml │ ├── Invisible lava marker map.bin │ ├── Invisible lava marker.xml │ ├── InvisibleBlock.cs │ ├── Monitor.xml │ ├── PointBonus.xml │ ├── Ring.cs │ ├── Spikes.xml │ ├── Spring.xml │ └── Switch.xml ├── GHZ │ ├── BreakableWall.xml │ ├── Bridge.cs │ ├── CollapsingCliff.xml │ ├── Newtron.xml │ ├── Platform.xml │ ├── SpikedPole.cs │ ├── SwingingPlatform.cs │ ├── WallBarrier.xml │ └── obj.ini ├── LZ │ ├── Block.xml │ ├── Bubbles.xml │ ├── ConveyorBelt.xml │ ├── Door.xml │ ├── FlappingDoor.xml │ ├── Harpoon.xml │ ├── Jaws.xml │ ├── MovingBlocks.xml │ ├── Orbinaut.xml │ ├── Pole.xml │ ├── Spikeball.cs │ ├── Waterfall.xml │ └── obj.ini ├── MZ │ ├── Brick.xml │ ├── LavaGeyser.xml │ ├── MZ Lava.bin │ ├── MovingBlocks.xml │ ├── MovingPlatform.xml │ ├── SidewaysStomper.cs │ ├── SmashableBlock.xml │ ├── SpikedWeight.xml │ ├── Switch.xml │ └── obj.ini ├── SBZ │ ├── BallHog.xml │ ├── ConveyerBelt.xml │ ├── ConveyerBeltMap.asm │ ├── Flamethrower.cs │ ├── MovingBlocks.xml │ ├── RotatingJunction.xml │ ├── RunningDisc.xml │ ├── SBZ Horizontal Door map.asm │ ├── Saws.xml │ ├── SpinningPlatform.xml │ ├── Stomper.xml │ ├── SwingingSpikeball.cs │ └── obj.ini ├── SLZ │ ├── CirclingPlatform.xml │ ├── Elevator.xml │ ├── Fan.xml │ ├── Orbinaut.xml │ ├── Platform.xml │ ├── Seesaw.xml │ ├── Stairs.xml │ ├── SwingingPlatform.cs │ └── obj.ini ├── SYZ │ ├── BigSpikedBall.cs │ ├── Block.cs │ ├── Platform.xml │ ├── SpikeballChain.cs │ └── obj.ini ├── SonLVL.ini └── obj.ini ├── diff.bat ├── levels ├── GHZ │ ├── BallHog │ │ ├── Cannonball.map │ │ ├── CannonballExplode.map │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── Boss │ │ ├── Ball.map │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── Bridge │ │ └── Sprite.map │ ├── Buzzbomber │ │ ├── Missile.ani │ │ ├── Missile.map │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── Chopper │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── CollapseFloor │ │ └── Sprite.map │ ├── CollapsePtfm │ │ └── Sprite.map │ ├── Crabmeat │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── Motobug │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── MovingPtfm │ │ └── Sprite.map │ ├── Newtron │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── PurpleRock │ │ └── Sprite.map │ ├── RollingBall │ │ └── Sprite.map │ ├── SmashBlock │ │ └── Sprite.map │ ├── SmashWall │ │ └── Sprite.map │ ├── SpikeLogs │ │ └── Sprite.map │ └── Wall │ │ └── Sprite.map ├── LZ │ ├── Burrobot │ │ ├── Sprite.ani │ │ └── Sprite.map │ └── Jaws │ │ ├── Sprite.ani │ │ └── Sprite.map ├── MZ │ ├── Basaran │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── Blocks │ │ └── Sprite.map │ ├── ChainPtfm │ │ └── Sprite.map │ ├── FloorLavaball │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── GlassBlock │ │ └── Sprite.map │ ├── LavaBall │ │ └── Sprite.ani │ ├── LavaChase │ │ ├── Sprite.ani │ │ └── Sprite.map │ ├── LavaFall │ │ ├── Maker.ani │ │ └── Sprite.map │ ├── LavaHurt │ │ └── Sprite.map │ ├── Platform │ │ └── Sprite.map │ └── PushBlock │ │ └── Sprite.map ├── SLZ │ ├── CirclePtfm │ │ └── Sprite.map │ ├── Fan │ │ └── Sprite.map │ ├── Girder │ │ └── Sprite.map │ ├── MovingPtfm │ │ └── Srite.map │ ├── Seesaw │ │ └── Sprite.map │ └── StaircasePtfm │ │ └── Sprite.map ├── SYZ │ ├── Bumper │ │ ├── Sprite.ani │ │ └── Sprite.map │ └── SceneryLamp │ │ └── Sprite.map └── shared │ ├── Animals │ ├── 1.map │ ├── 2.map │ └── 3.map │ ├── Capsule │ ├── Sprite.ani │ └── Sprite.map │ ├── Explosion │ ├── Bomb.map │ └── Sprite.map │ ├── GameOver │ └── Sprite.map │ ├── HUD │ └── Sprite.map │ ├── LevelResults │ └── Sprite.map │ ├── Monitors │ ├── Sprite.ani │ └── Sprite.map │ ├── MovingBlocks │ └── Sprite.map │ ├── Platform │ ├── 1.map │ ├── 2.map │ └── 3.map │ ├── Points │ └── Sprite.map │ ├── Rings │ ├── Sprite.ani │ └── Sprite.map │ ├── Roller │ ├── Sprite.ani │ └── Sprite.map │ ├── Scenery │ └── Sprite.map │ ├── Shield │ ├── Shield.ani │ └── Shield.map │ ├── Signpost │ ├── Sprite.ani │ └── Sprite.map │ ├── Sonic │ ├── Srite.ani │ ├── dynamic.map │ └── sprite.map │ ├── SpecialRing │ ├── Sprite.ani │ └── Sprite.map │ ├── Spikes │ └── Sprite.map │ ├── Spring │ ├── Sprite.ani │ └── Sprite.map │ ├── SwingPtfm │ ├── Main.map │ └── SYZ.map │ ├── Switch │ └── Sprite.map │ ├── TitleCard │ └── Sprite.map │ └── Yadrin │ ├── Sprite.ani │ └── Sprite.map ├── macros.asm ├── main.asm ├── process.bat ├── screens └── title │ ├── TitleSonic │ ├── Sprite.ani │ └── Sprite.map │ └── TitleText │ ├── Sprite.ani │ └── Sprite.map ├── sound └── z80 │ ├── DAC Driver.asm │ ├── DAC Driver.i64 │ ├── Kick.dpcm │ ├── Snare.dpcm │ └── Timpani.dpcm ├── split.bat ├── test.bat ├── tools ├── ASM68K.EXE ├── DisasmProcess.exe ├── LANG.ASM ├── SplitROM.exe ├── VBinDiff.exe ├── fixheadr.exe ├── s1proto.i64 └── s1proto.txt ├── unknown ├── 05BD2.map ├── 06526.map ├── Map02.map ├── Map05.map ├── Map2A.map ├── Map45.map ├── Map4B.map └── Map4F.map └── unsorted ├── MapGiantSpikedBalls.map ├── MapSpikedBalls.map └── Uknown Switch.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/README.md -------------------------------------------------------------------------------- /SONLVL/Common/CaterkillerMappings.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/CaterkillerMappings.asm -------------------------------------------------------------------------------- /SONLVL/Common/EggPrison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/EggPrison.xml -------------------------------------------------------------------------------- /SONLVL/Common/FireballSpawner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/FireballSpawner.xml -------------------------------------------------------------------------------- /SONLVL/Common/Invisible lava marker map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Invisible lava marker map.bin -------------------------------------------------------------------------------- /SONLVL/Common/Invisible lava marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Invisible lava marker.xml -------------------------------------------------------------------------------- /SONLVL/Common/InvisibleBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/InvisibleBlock.cs -------------------------------------------------------------------------------- /SONLVL/Common/Monitor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Monitor.xml -------------------------------------------------------------------------------- /SONLVL/Common/PointBonus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/PointBonus.xml -------------------------------------------------------------------------------- /SONLVL/Common/Ring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Ring.cs -------------------------------------------------------------------------------- /SONLVL/Common/Spikes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Spikes.xml -------------------------------------------------------------------------------- /SONLVL/Common/Spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Spring.xml -------------------------------------------------------------------------------- /SONLVL/Common/Switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/Common/Switch.xml -------------------------------------------------------------------------------- /SONLVL/GHZ/BreakableWall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/BreakableWall.xml -------------------------------------------------------------------------------- /SONLVL/GHZ/Bridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/Bridge.cs -------------------------------------------------------------------------------- /SONLVL/GHZ/CollapsingCliff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/CollapsingCliff.xml -------------------------------------------------------------------------------- /SONLVL/GHZ/Newtron.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/Newtron.xml -------------------------------------------------------------------------------- /SONLVL/GHZ/Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/Platform.xml -------------------------------------------------------------------------------- /SONLVL/GHZ/SpikedPole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/SpikedPole.cs -------------------------------------------------------------------------------- /SONLVL/GHZ/SwingingPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/SwingingPlatform.cs -------------------------------------------------------------------------------- /SONLVL/GHZ/WallBarrier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/WallBarrier.xml -------------------------------------------------------------------------------- /SONLVL/GHZ/obj.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/GHZ/obj.ini -------------------------------------------------------------------------------- /SONLVL/LZ/Block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Block.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Bubbles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Bubbles.xml -------------------------------------------------------------------------------- /SONLVL/LZ/ConveyorBelt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/ConveyorBelt.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Door.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Door.xml -------------------------------------------------------------------------------- /SONLVL/LZ/FlappingDoor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/FlappingDoor.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Harpoon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Harpoon.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Jaws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Jaws.xml -------------------------------------------------------------------------------- /SONLVL/LZ/MovingBlocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/MovingBlocks.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Orbinaut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Orbinaut.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Pole.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Pole.xml -------------------------------------------------------------------------------- /SONLVL/LZ/Spikeball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Spikeball.cs -------------------------------------------------------------------------------- /SONLVL/LZ/Waterfall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/Waterfall.xml -------------------------------------------------------------------------------- /SONLVL/LZ/obj.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/LZ/obj.ini -------------------------------------------------------------------------------- /SONLVL/MZ/Brick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/Brick.xml -------------------------------------------------------------------------------- /SONLVL/MZ/LavaGeyser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/LavaGeyser.xml -------------------------------------------------------------------------------- /SONLVL/MZ/MZ Lava.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/MZ Lava.bin -------------------------------------------------------------------------------- /SONLVL/MZ/MovingBlocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/MovingBlocks.xml -------------------------------------------------------------------------------- /SONLVL/MZ/MovingPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/MovingPlatform.xml -------------------------------------------------------------------------------- /SONLVL/MZ/SidewaysStomper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/SidewaysStomper.cs -------------------------------------------------------------------------------- /SONLVL/MZ/SmashableBlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/SmashableBlock.xml -------------------------------------------------------------------------------- /SONLVL/MZ/SpikedWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/SpikedWeight.xml -------------------------------------------------------------------------------- /SONLVL/MZ/Switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/Switch.xml -------------------------------------------------------------------------------- /SONLVL/MZ/obj.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/MZ/obj.ini -------------------------------------------------------------------------------- /SONLVL/SBZ/BallHog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/BallHog.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/ConveyerBelt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/ConveyerBelt.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/ConveyerBeltMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/ConveyerBeltMap.asm -------------------------------------------------------------------------------- /SONLVL/SBZ/Flamethrower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/Flamethrower.cs -------------------------------------------------------------------------------- /SONLVL/SBZ/MovingBlocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/MovingBlocks.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/RotatingJunction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/RotatingJunction.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/RunningDisc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/RunningDisc.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/SBZ Horizontal Door map.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/SBZ Horizontal Door map.asm -------------------------------------------------------------------------------- /SONLVL/SBZ/Saws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/Saws.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/SpinningPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/SpinningPlatform.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/Stomper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/Stomper.xml -------------------------------------------------------------------------------- /SONLVL/SBZ/SwingingSpikeball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SBZ/SwingingSpikeball.cs -------------------------------------------------------------------------------- /SONLVL/SBZ/obj.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SONLVL/SLZ/CirclingPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/CirclingPlatform.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/Elevator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/Elevator.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/Fan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/Fan.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/Orbinaut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/Orbinaut.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/Platform.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/Seesaw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/Seesaw.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/Stairs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/Stairs.xml -------------------------------------------------------------------------------- /SONLVL/SLZ/SwingingPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/SwingingPlatform.cs -------------------------------------------------------------------------------- /SONLVL/SLZ/obj.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SLZ/obj.ini -------------------------------------------------------------------------------- /SONLVL/SYZ/BigSpikedBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SYZ/BigSpikedBall.cs -------------------------------------------------------------------------------- /SONLVL/SYZ/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SYZ/Block.cs -------------------------------------------------------------------------------- /SONLVL/SYZ/Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SYZ/Platform.xml -------------------------------------------------------------------------------- /SONLVL/SYZ/SpikeballChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SYZ/SpikeballChain.cs -------------------------------------------------------------------------------- /SONLVL/SYZ/obj.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SYZ/obj.ini -------------------------------------------------------------------------------- /SONLVL/SonLVL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/SonLVL.ini -------------------------------------------------------------------------------- /SONLVL/obj.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/SONLVL/obj.ini -------------------------------------------------------------------------------- /diff.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/diff.bat -------------------------------------------------------------------------------- /levels/GHZ/BallHog/Cannonball.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/BallHog/Cannonball.map -------------------------------------------------------------------------------- /levels/GHZ/BallHog/CannonballExplode.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/BallHog/CannonballExplode.map -------------------------------------------------------------------------------- /levels/GHZ/BallHog/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/BallHog/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/BallHog/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/BallHog/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Boss/Ball.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Boss/Ball.map -------------------------------------------------------------------------------- /levels/GHZ/Boss/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Boss/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/Boss/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Boss/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Bridge/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Bridge/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Buzzbomber/Missile.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Buzzbomber/Missile.ani -------------------------------------------------------------------------------- /levels/GHZ/Buzzbomber/Missile.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Buzzbomber/Missile.map -------------------------------------------------------------------------------- /levels/GHZ/Buzzbomber/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Buzzbomber/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/Buzzbomber/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Buzzbomber/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Chopper/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Chopper/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/Chopper/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Chopper/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/CollapseFloor/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/CollapseFloor/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/CollapsePtfm/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/CollapsePtfm/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Crabmeat/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Crabmeat/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/Crabmeat/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Crabmeat/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Motobug/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Motobug/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/Motobug/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Motobug/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/MovingPtfm/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/MovingPtfm/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Newtron/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Newtron/Sprite.ani -------------------------------------------------------------------------------- /levels/GHZ/Newtron/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Newtron/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/PurpleRock/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/PurpleRock/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/RollingBall/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/RollingBall/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/SmashBlock/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/SmashBlock/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/SmashWall/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/SmashWall/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/SpikeLogs/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/SpikeLogs/Sprite.map -------------------------------------------------------------------------------- /levels/GHZ/Wall/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/GHZ/Wall/Sprite.map -------------------------------------------------------------------------------- /levels/LZ/Burrobot/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/LZ/Burrobot/Sprite.ani -------------------------------------------------------------------------------- /levels/LZ/Burrobot/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/LZ/Burrobot/Sprite.map -------------------------------------------------------------------------------- /levels/LZ/Jaws/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/LZ/Jaws/Sprite.ani -------------------------------------------------------------------------------- /levels/LZ/Jaws/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/LZ/Jaws/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/Basaran/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/Basaran/Sprite.ani -------------------------------------------------------------------------------- /levels/MZ/Basaran/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/Basaran/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/Blocks/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/Blocks/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/ChainPtfm/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/ChainPtfm/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/FloorLavaball/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/FloorLavaball/Sprite.ani -------------------------------------------------------------------------------- /levels/MZ/FloorLavaball/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/FloorLavaball/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/GlassBlock/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/GlassBlock/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/LavaBall/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/LavaBall/Sprite.ani -------------------------------------------------------------------------------- /levels/MZ/LavaChase/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/LavaChase/Sprite.ani -------------------------------------------------------------------------------- /levels/MZ/LavaChase/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/LavaChase/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/LavaFall/Maker.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/LavaFall/Maker.ani -------------------------------------------------------------------------------- /levels/MZ/LavaFall/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/LavaFall/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/LavaHurt/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/LavaHurt/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/Platform/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/Platform/Sprite.map -------------------------------------------------------------------------------- /levels/MZ/PushBlock/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/MZ/PushBlock/Sprite.map -------------------------------------------------------------------------------- /levels/SLZ/CirclePtfm/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SLZ/CirclePtfm/Sprite.map -------------------------------------------------------------------------------- /levels/SLZ/Fan/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SLZ/Fan/Sprite.map -------------------------------------------------------------------------------- /levels/SLZ/Girder/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SLZ/Girder/Sprite.map -------------------------------------------------------------------------------- /levels/SLZ/MovingPtfm/Srite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SLZ/MovingPtfm/Srite.map -------------------------------------------------------------------------------- /levels/SLZ/Seesaw/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SLZ/Seesaw/Sprite.map -------------------------------------------------------------------------------- /levels/SLZ/StaircasePtfm/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SLZ/StaircasePtfm/Sprite.map -------------------------------------------------------------------------------- /levels/SYZ/Bumper/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SYZ/Bumper/Sprite.ani -------------------------------------------------------------------------------- /levels/SYZ/Bumper/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SYZ/Bumper/Sprite.map -------------------------------------------------------------------------------- /levels/SYZ/SceneryLamp/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/SYZ/SceneryLamp/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Animals/1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Animals/1.map -------------------------------------------------------------------------------- /levels/shared/Animals/2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Animals/2.map -------------------------------------------------------------------------------- /levels/shared/Animals/3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Animals/3.map -------------------------------------------------------------------------------- /levels/shared/Capsule/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Capsule/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Capsule/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Capsule/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Explosion/Bomb.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Explosion/Bomb.map -------------------------------------------------------------------------------- /levels/shared/Explosion/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Explosion/Sprite.map -------------------------------------------------------------------------------- /levels/shared/GameOver/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/GameOver/Sprite.map -------------------------------------------------------------------------------- /levels/shared/HUD/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/HUD/Sprite.map -------------------------------------------------------------------------------- /levels/shared/LevelResults/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/LevelResults/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Monitors/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Monitors/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Monitors/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Monitors/Sprite.map -------------------------------------------------------------------------------- /levels/shared/MovingBlocks/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/MovingBlocks/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Platform/1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Platform/1.map -------------------------------------------------------------------------------- /levels/shared/Platform/2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Platform/2.map -------------------------------------------------------------------------------- /levels/shared/Platform/3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Platform/3.map -------------------------------------------------------------------------------- /levels/shared/Points/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Points/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Rings/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Rings/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Rings/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Rings/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Roller/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Roller/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Roller/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Roller/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Scenery/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Scenery/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Shield/Shield.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Shield/Shield.ani -------------------------------------------------------------------------------- /levels/shared/Shield/Shield.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Shield/Shield.map -------------------------------------------------------------------------------- /levels/shared/Signpost/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Signpost/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Signpost/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Signpost/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Sonic/Srite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Sonic/Srite.ani -------------------------------------------------------------------------------- /levels/shared/Sonic/dynamic.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Sonic/dynamic.map -------------------------------------------------------------------------------- /levels/shared/Sonic/sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Sonic/sprite.map -------------------------------------------------------------------------------- /levels/shared/SpecialRing/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/SpecialRing/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/SpecialRing/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/SpecialRing/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Spikes/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Spikes/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Spring/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Spring/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Spring/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Spring/Sprite.map -------------------------------------------------------------------------------- /levels/shared/SwingPtfm/Main.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/SwingPtfm/Main.map -------------------------------------------------------------------------------- /levels/shared/SwingPtfm/SYZ.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/SwingPtfm/SYZ.map -------------------------------------------------------------------------------- /levels/shared/Switch/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Switch/Sprite.map -------------------------------------------------------------------------------- /levels/shared/TitleCard/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/TitleCard/Sprite.map -------------------------------------------------------------------------------- /levels/shared/Yadrin/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Yadrin/Sprite.ani -------------------------------------------------------------------------------- /levels/shared/Yadrin/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/levels/shared/Yadrin/Sprite.map -------------------------------------------------------------------------------- /macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/macros.asm -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/main.asm -------------------------------------------------------------------------------- /process.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/process.bat -------------------------------------------------------------------------------- /screens/title/TitleSonic/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/screens/title/TitleSonic/Sprite.ani -------------------------------------------------------------------------------- /screens/title/TitleSonic/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/screens/title/TitleSonic/Sprite.map -------------------------------------------------------------------------------- /screens/title/TitleText/Sprite.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/screens/title/TitleText/Sprite.ani -------------------------------------------------------------------------------- /screens/title/TitleText/Sprite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/screens/title/TitleText/Sprite.map -------------------------------------------------------------------------------- /sound/z80/DAC Driver.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/sound/z80/DAC Driver.asm -------------------------------------------------------------------------------- /sound/z80/DAC Driver.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/sound/z80/DAC Driver.i64 -------------------------------------------------------------------------------- /sound/z80/Kick.dpcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/sound/z80/Kick.dpcm -------------------------------------------------------------------------------- /sound/z80/Snare.dpcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/sound/z80/Snare.dpcm -------------------------------------------------------------------------------- /sound/z80/Timpani.dpcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/sound/z80/Timpani.dpcm -------------------------------------------------------------------------------- /split.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/split.bat -------------------------------------------------------------------------------- /test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/test.bat -------------------------------------------------------------------------------- /tools/ASM68K.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/ASM68K.EXE -------------------------------------------------------------------------------- /tools/DisasmProcess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/DisasmProcess.exe -------------------------------------------------------------------------------- /tools/LANG.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/LANG.ASM -------------------------------------------------------------------------------- /tools/SplitROM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/SplitROM.exe -------------------------------------------------------------------------------- /tools/VBinDiff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/VBinDiff.exe -------------------------------------------------------------------------------- /tools/fixheadr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/fixheadr.exe -------------------------------------------------------------------------------- /tools/s1proto.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/s1proto.i64 -------------------------------------------------------------------------------- /tools/s1proto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/tools/s1proto.txt -------------------------------------------------------------------------------- /unknown/05BD2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/05BD2.map -------------------------------------------------------------------------------- /unknown/06526.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/06526.map -------------------------------------------------------------------------------- /unknown/Map02.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/Map02.map -------------------------------------------------------------------------------- /unknown/Map05.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/Map05.map -------------------------------------------------------------------------------- /unknown/Map2A.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/Map2A.map -------------------------------------------------------------------------------- /unknown/Map45.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/Map45.map -------------------------------------------------------------------------------- /unknown/Map4B.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/Map4B.map -------------------------------------------------------------------------------- /unknown/Map4F.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unknown/Map4F.map -------------------------------------------------------------------------------- /unsorted/MapGiantSpikedBalls.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unsorted/MapGiantSpikedBalls.map -------------------------------------------------------------------------------- /unsorted/MapSpikedBalls.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unsorted/MapSpikedBalls.map -------------------------------------------------------------------------------- /unsorted/Uknown Switch.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mega-Drive-Developers-Collective/Sonic-1-Prototype/HEAD/unsorted/Uknown Switch.map --------------------------------------------------------------------------------