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
1 changed files with 28 additions and 10 deletions

View File

@ -8809,12 +8809,18 @@ Sigma_Exit:
This command can be used without any additional parameters. It will read the entire RAM. This command can be used without any additional parameters. It will read the entire RAM.
#### Usage #### Usage
D3 [ A | C | X ] D2 [ A | C | X ]
#### Parameters #### Parameters
- `A` - Address (0x0000-0x1fff) - `A` - Address (x0000-x1fff)
- `C` - Count (0x0001-0x2000) - `C` - Count (1-8192)
- `X` - Data - `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: case 2:
dcode_2(); break; dcode_2(); break;
@ -8829,9 +8835,15 @@ Sigma_Exit:
D3 [ A | C | X ] D3 [ A | C | X ]
#### Parameters #### Parameters
- `A` - Address (0x0000-0x0fff) - `A` - Address (x0000-x0fff)
- `C` - Count (0x0001-0x1000) - `C` - Count (1-4096)
- `X` - Data - `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: case 3:
dcode_3(); break; dcode_3(); break;
@ -8861,14 +8873,20 @@ Sigma_Exit:
This command can be used without any additional parameters. It will read the 1kb FLASH. This command can be used without any additional parameters. It will read the 1kb FLASH.
#### Usage #### Usage
D3 [ A | C | X | E ] D5 [ A | C | X | E ]
#### Parameters #### Parameters
- `A` - Address (0x00000-0x3ffff) - `A` - Address (x00000-x3ffff)
- `C` - Count (0x0001-0x2000) - `C` - Count (1-8192)
- `X` - Data - `X` - Data
- `E` - Erase - `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: case 5:
dcode_5(); break; dcode_5(); break;
break; break;