Some D-codes are case sensitive

This commit is contained in:
3d-gussner 2020-03-25 17:26:27 +01:00
parent 73349033d5
commit 0d00db1c33

View file

@ -8809,12 +8809,18 @@ Sigma_Exit:
This command can be used without any additional parameters. It will read the entire RAM.
#### Usage
D3 [ A | C | X ]
D2 [ A | C | X ]
#### Parameters
- `A` - Address (0x0000-0x1fff)
- `C` - Count (0x0001-0x2000)
- `A` - Address (x0000-x1fff)
- `C` - Count (1-8192)
- `X` - Data
#### Notes
- The hex address needs to be lowercase without the 0 before the x
- Count is decimal
- The hex data needs to be lowercase
*/
case 2:
dcode_2(); break;
@ -8829,9 +8835,15 @@ Sigma_Exit:
D3 [ A | C | X ]
#### Parameters
- `A` - Address (0x0000-0x0fff)
- `C` - Count (0x0001-0x1000)
- `X` - Data
- `A` - Address (x0000-x0fff)
- `C` - Count (1-4096)
- `X` - Data (hex)
#### Notes
- The hex address needs to be lowercase without the 0 before the x
- Count is decimal
- The hex data needs to be lowercase
*/
case 3:
dcode_3(); break;
@ -8861,14 +8873,20 @@ Sigma_Exit:
This command can be used without any additional parameters. It will read the 1kb FLASH.
#### Usage
D3 [ A | C | X | E ]
D5 [ A | C | X | E ]
#### Parameters
- `A` - Address (0x00000-0x3ffff)
- `C` - Count (0x0001-0x2000)
- `A` - Address (x00000-x3ffff)
- `C` - Count (1-8192)
- `X` - Data
- `E` - Erase
*/
#### Notes
- The hex address needs to be lowercase without the 0 before the x
- Count is decimal
- The hex data needs to be lowercase
*/
case 5:
dcode_5(); break;
break;