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

Version 0.3.28

This commit is contained in:
Karol Stasiak 2021-05-24 00:17:51 +02:00
parent 4f6eefab79
commit 144da70594
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,8 @@
# Change log
## Current version
## 0.3.28 (2021-05-24)
* Officially deprecated decimal operators with apostrophes.
* Added optimization hints.

View File

@ -5,7 +5,7 @@
A middle-level programming language targeting 6502-based, 8080-based, Z80-based and 6809-based microcomputers.
For binary releases, see: [https://github.com/KarolS/millfork/releases](https://github.com/KarolS/millfork/releases)
(latest: 0.3.24).
(latest: 0.3.28).
For build instructions, see [Build instructions](./COMPILING.md).
## Features

View File

@ -1,6 +1,6 @@
name := "millfork"
version := "0.3.27-SNAPSHOT"
version := "0.3.28"
// keep it at 2.12.11 for GraalVM native image compatibility!
scalaVersion := "2.12.11"

View File

@ -50,8 +50,6 @@ These hints have only effect when used on an assembly function on a 8080-like ta
* `!preserves_hl` the function preserves the contents of the H and L registers
* `!preserves_hl` the function preserves the contents of the H and L registers
* `!preserves_cf` the function preserves the contents of the carry flag
## Hints for 6809 assembly functions