1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-12 06:29:34 +00:00

Documentation update

This commit is contained in:
Karol Stasiak 2018-12-29 20:16:05 +01:00
parent 9a7086fd8c
commit a100675c7c
2 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,16 @@
## Current version
* Added `MILLFORK_VERSION` preprocessor parameter.
* 6502: Fixed optimizations using index registers.
* Fixed optimizations removing pointless stores to local variables.
* Fixed `#use` not accessing all preprocessor parameters.
* Fixed `#pragma` not respecting `#if`
## 0.3.2
* Almost complete support for the Zilog Z80, Intel 8080 and Sharp LR35902 microprocessors.

View File

@ -32,6 +32,8 @@ You can also define feature values using the `-D` command line option.
The following features are defined based on the chosen CPU and compilation options:
* `MILLFORK_VERSION` defined since 0.3.4, contains the version of the compiler: for version x.y.z, the value is 10000x+100y+z
* `ARCH_6502` 1 if compiling for 6502, 0 otherwise
* `ARCH_I80` 1 if compiling for Intel 8080-like processor, 0 otherwise