Fix type lenght -> length
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -13,10 +13,10 @@ bool checkBit(uint8_t tmp_b, int pos);
|
||||
void draw_SEG_digit(BITMAP *buf, int x, int y, int color, int size, uint8_t segm_code);
|
||||
void draw_LED_bin(BITMAP *buf, int x, int y, int color, uint8_t code);
|
||||
void change_char(char *string, char ch, int pos);
|
||||
void insert_char(char *string, char ch, int pos, int lenght);
|
||||
void cut_char(char *string, int pos, int lenght);
|
||||
void insert_char(char *string, char ch, int pos, int length);
|
||||
void cut_char(char *string, int pos, int length);
|
||||
void change_ext(char *s);
|
||||
void GetText(char *text, BITMAP *buf, int x, int y, int w, int h, int lenght, char *title);
|
||||
void GetText(char *text, BITMAP *buf, int x, int y, int w, int h, int length, char *title);
|
||||
void ShowMessage(char *text, BITMAP *buf, int x, int y, int w, int h, char *title);
|
||||
bool QuestionBox(char *text, BITMAP *buf, int x, int y, int w, int h, char *title, int _color);
|
||||
void ShowMsgEx(char *text, BITMAP *buf, int x, int y, int w, int h, char *title, int _color);
|
||||
|
||||
Reference in New Issue
Block a user