1
0
Fork 0

Cleanup and update README

removing line-numbers and fixing a link
This commit is contained in:
J. Elfring 2024-03-19 20:46:59 +01:00
parent 293b51a499
commit 09f357375d
3 changed files with 89 additions and 90 deletions

View file

@ -11,7 +11,8 @@ The directories also contain .raw files which are the binaries.
This is not the git-way but rather useful and I'll give my best to keep them in This is not the git-way but rather useful and I'll give my best to keep them in
sync. sync.
Compilation is done with [Swissmicros' Online Converter](https://www.swissmicros.com/dm42/decoder/) Compilation is done with [Swissmicros' Online
Converter](https://technical.swissmicros.com/decoders/dm42/index.php)
## License ## License
Most of the programs (the ones I made) are licensed under **GNU GPLv3**. Most of the programs (the ones I made) are licensed under **GNU GPLv3**.

View file

@ -1,44 +1,43 @@
00 { 189-Byte Prgm } LBL "GFWtr"
01▸LBL "GFWtr" ADV
02 ADV "---GF Wasser---"
03 "---GF Wasser---" PRA
04 PRA CLA
05 CLA DATE
06 DATE ADATE
07 ADATE ├" "
08 ├" " TIME
09 TIME ATIME24
10 ATIME24 PRA
11 PRA CLA
12 CLA DROPN 2
13 DROPN 2 INPUT "Asslg l"
14 INPUT "Asslg l" INPUT "Malz kg"
15 INPUT "Malz kg" 2,7
16 2,7 ×
17 × 3,5
18 3,5 +
19 + STO 01
20 STO 01 RCL "Asslg l"
21 RCL "Asslg l" 5
22 5 +
23 + RCL 01
24 RCL 01 -
25 - RCL "Malz kg"
26 RCL "Malz kg" 0,8
27 0,8 ×
28 × +
29 + STO 02
30 STO 02 "Ausschlag= "
31 "Ausschlag= " ARCL "Asslg l"
32 ARCL "Asslg l" ├" l[LF]Malz= "
33 ├" l[LF]Malz= " ARCL "Malz kg"
34 ARCL "Malz kg" ├" kg"
35 ├" kg" PRA
36 PRA "Hauptguss= "
37 "Hauptguss= " ARCL 01
38 ARCL 01 ├" l[LF]Nachguss= "
39 ├" l[LF]Nachguss= " ARCL 02
40 ARCL 02 ├" l"
41 ├" l" AVIEW
42 AVIEW END
43 .END.

View file

@ -1,45 +1,44 @@
00 { 140-Byte Prgm } LBL "MOD"
01▸LBL "MOD" ADV
02 ADV "----- Nitrox MO"
03 "----- Nitrox MO" ├"D -----"
04 ├"D -----" PRA
05 PRA CLA
06 CLA DATE
07 DATE ADATE
08 ADATE TIME
09 TIME ├" "
10 ├" " ATIME24
11 ATIME24 PRA
12 PRA CLA
13 CLA DROPN 2
14 DROPN 2 ├"[LF]EAN= "
15 ├"[LF]EAN= " "EAN= "
16 "EAN= " ARCL ST X
17 ARCL ST X ├" %"
18 ├" %" PRA
19 PRA 100
20 100 ÷
21 ÷ STO 01
22 STO 01 1,4
23 1,4 RCL 01
24 RCL 01 ÷
25 ÷ 1
26 1 -
27 - 10
28 10 ×
29 × "MOD1,4= "
30 "MOD1,4= " ARCL ST X
31 ARCL ST X ├" m"
32 ├" m" 1,6
33 1,6 RCL 01
34 RCL 01 ÷
35 ÷ 1
36 1 -
37 - 10
38 10 ×
39 × ├"[LF]MOD1,6= "
40 ├"[LF]MOD1,6= " ARCL ST X
41 ARCL ST X ├" m"
42 ├" m" AVIEW
43 AVIEW END
44 END