1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-31 18:41:30 +00:00

Merge pull request #75 from zbyti/master

A8 examples readme new arrangement
This commit is contained in:
Karol Stasiak 2020-09-26 19:56:10 +02:00 committed by GitHub
commit a15c9088ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 8 deletions

View File

@ -80,7 +80,9 @@ how to create a program made of multiple files loaded on demand
## Atari 8-bit examples
* [Rainbow example](a8/rainbow.mfk) simple scrolling rasterbars
### Hardware specific examples
* [System Off example](a8/systemoff_example.mfk) programming with ROM off
* [DLI example](a8/dli_example.mfk) simple display list and display list interrupt example
@ -90,11 +92,9 @@ how to create a program made of multiple files loaded on demand
* [Horizontal stars example](a8/horizontal_stars.mfk) horizontal stars done on one missile
* [Grand Ttheft Antic](a8/grand_theft_antic.mfk) ANTIC impact on CPU depending on the used graphic mode
### Benchmarks
* [Quatari Landscape](a8/landscape.mfk) part of Quatari 256B intro
* [System Off example](a8/systemoff_example.mfk) programming with ROM off
* [Grand Theft Antic](a8/grand_theft_antic.mfk) ANTIC impact on CPU depending on the used graphic mode
* [GR.8 Chessboard Benchmark](a8/gr8_chessboard_benchmark.mfk) chessboard drawing benchmark in GR.8
@ -104,10 +104,16 @@ how to create a program made of multiple files loaded on demand
* [Sieve of Eratosthenes (1899) Benchmark](a8/sieve1899.mfk) sieve of Eratosthenes, 1899 primes algorithm
* [Monte Carlo PI estimation Benchmark](a8/montecarlo_pi_benchmark.mfk) measures the efficiency of multiplication
* [Monte Carlo PI approximation Benchmark](a8/montecarlo_pi_benchmark.mfk) measures the efficiency of multiplication
* [Bubble Sort Benchmark](a8/bubble_sort.mfk) sort 255 elements
### Other examples
* [Rainbow example](a8/rainbow.mfk) simple scrolling rasterbars
* [Quatari Landscape](a8/landscape.mfk) part of Quatari 256B intro
## Game Boy examples
* [GB test example](gb/gbtest.mfk) a partial port of the NES example, with a rudimentary experimental text output implementation

View File

@ -1,8 +1,8 @@
// idea @ilmenit
// https://demozoo.org/productions/280623/
alias prev_x = os_OLDCOL
alias cursor_x = os_COLCRS
alias prev_x = os_OLDCOL.lo
alias cursor_x = os_COLCRS.lo
alias prev_y = os_OLDROW
alias cursor_y = os_ROWCRS
alias color = os_ATACHR