Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ The available features are:
fpc -MDelphi -vh -O3 mp.pas

## Usage
[WUDSN and Mad Pascal](https://forums.atariage.com/topic/348660-wudsn-mad-pascal-quick-hack-increasing-usability/)
[WUDSN and Mad-Pascal](https://forums.atariage.com/topic/348660-wudsn-mad-pascal-quick-hack-increasing-usability/)

[Mad Pascal i Geany](http://bocianu.atari.pl/blog/madgeany)
[Mad-Pascal i Geany](http://bocianu.atari.pl/blog/madgeany)

### [Atari 8-Bit](https://github.com/tebe6502/Mad-Pascal/tree/master/samples/a8)
mp.exe filename.pas -ipath:<MadPascalPath>\lib
Expand Down Expand Up @@ -87,7 +87,7 @@ Source code at [GitLab](https://gitlab.com/bocianu/madstrap)

### [BLIBS](http://bocianu.atari.pl/blog/blibs)

Set of custom libraries for MadPascal.
Set of custom libraries for Mad-Pascal.

The latest documentation is always on [GitLab]( https://bocianu.gitlab.io/blibs/)

Expand All @@ -99,11 +99,11 @@ Source code at [GitLab](https://gitlab.com/bocianu/pasdoc)

### [Effectus](https://github.com/Gury8/effectus) - Action! compiler

The new version generates the source code using the Mad Pascal cross-compiler, which is further compiled into binary code with Mad Assembler.
The new version generates the source code using the Mad-Pascal cross-compiler, which is further compiled into binary code with Mad Assembler.

### [Game tutorial](https://github.com/zbyti/a8-mp-simple-game-tutorial)

Simple game tutorial by using Mad Pascal
Simple game tutorial by using Mad-Pascal

### [FiDL](https://gitlab.com/bocianu/fidl)

Expand Down Expand Up @@ -184,7 +184,7 @@ This text-mode windowing library has window controls and modern gadgets (widgets

## Benchmarks

| |CC65 |Mad Pascal|Millfork|
| |CC65 |Mad-Pascal|Millfork|
|:----------------------------|:----|:--------:|:------:|
|Sieve (less is better) |602 |577 |579 |
|YoshPlus (higher is better) |41933|41933 |41933 |
Expand Down Expand Up @@ -213,14 +213,14 @@ This text-mode windowing library has window controls and modern gadgets (widgets
## Links

* [HOME Page](http://mads.atari8.info/)
* [Mad Pascal on Atari Age Forum](https://atariage.com/forums/topic/240919-mad-pascal/)
* [Games in Mad Pascal](https://forums.atariage.com/topic/249968-games-in-mad-pascal/)
* [Mad Pascal examples](https://forums.atariage.com/topic/243658-mad-pascal-examples/)
* [Mad Pascal on Atari Area Forum](http://www.atari.org.pl/forum/viewtopic.php?id=13373)
* [Mad Pascal Announcement for WUDSN](https://atariage.com/forums/topic/145386-wudsn-ide-the-free-integrated-atari-8-bit-development-plugin-for-eclipse/?do=findComment&comment=4340150)
* [Mad-Pascal on Atari Age Forum](https://atariage.com/forums/topic/240919-mad-pascal/)
* [Games in Mad-Pascal](https://forums.atariage.com/topic/249968-games-in-mad-pascal/)
* [Mad-Pascal examples](https://forums.atariage.com/topic/243658-mad-pascal-examples/)
* [Mad-Pascal on Atari Area Forum](http://www.atari.org.pl/forum/viewtopic.php?id=13373)
* [Mad-Pascal Announcement for WUDSN](https://atariage.com/forums/topic/145386-wudsn-ide-the-free-integrated-atari-8-bit-development-plugin-for-eclipse/?do=findComment&comment=4340150)
* [Some advice](https://github.com/ilmenit/CC65-Advanced-Optimizations)
* [Programowanie w Mad Pascal dla C+4](https://c64portal.pl/2021/02/22/programowanie-w-mad-pascal-dla-c4/)
* [Commodore Plus/4, Mad Pascal i bitmapy](https://c64portal.pl/2021/04/10/commodore-plus-4-mad-pascal-i-bitmapy/)
* [Programowanie w Mad-Pascal dla C+4](https://c64portal.pl/2021/02/22/programowanie-w-mad-pascal-dla-c4/)
* [Commodore Plus/4, Mad-Pascal i bitmapy](https://c64portal.pl/2021/04/10/commodore-plus-4-mad-pascal-i-bitmapy/)

## YouTube

Expand All @@ -231,8 +231,8 @@ This text-mode windowing library has window controls and modern gadgets (widgets
* [gravity](https://youtu.be/xCwlX6QSn80)
* [Block Attack](https://youtu.be/2LqFITTgDPI)
* [Turbo Pascal "Sokoban"](https://youtu.be/bsQsEM3TYTA)
* [Tron +4. Mad Pascal i C+4](https://youtu.be/a4Y2TYj1ymg)
* [Mad Pascal Commodore Plus/4 plasma effect with TEDzakker demo music](https://youtu.be/Yg10zHR--14)
* [Tron +4. Mad-Pascal i C+4](https://youtu.be/a4Y2TYj1ymg)
* [Mad-Pascal Commodore Plus/4 plasma effect with TEDzakker demo music](https://youtu.be/Yg10zHR--14)
* [Dungeon Adventurer](https://youtu.be/7lLPm5MywPc)
* [Time Wizard](https://youtu.be/E12bu5whjpQ)

Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ $(BIN): $(SRC)
fpc -Mdelphi -v -O3 $< -o$(BIN)

clean:
rm -fv $(BIN) $(BINDIR)/*.o $(BINDIR)/*.ppu
rm -fv *.o *.ppu $(BIN) $(BINDIR)/*.o $(BINDIR)/*.ppu

.PHONY: clean