Fix type lenght -> length

This commit is contained in:
Godzil
2023-03-22 18:20:16 +00:00
parent 768515710c
commit 37b24667fd
5 changed files with 32 additions and 32 deletions

View File

@@ -14,7 +14,7 @@ class code_51
public:
char mnem[6]; // instruction mnemonic (2-4 characters)
uint8_t code; // instruction code
uint8_t lenght; // bytes which are needed to write this instruction into memory
uint8_t length; // bytes which are needed to write this instruction into memory
uint8_t cycles; // time unit
char display_string[20]; // string which is ready for displaying, it's made by make_ds(WORD) method
char datas[12]; // string which contains datas which will be displayed after mnemonic