This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/MCU/Final_Design/snake.h

31 lines
325 B
C
Raw Normal View History

2022-05-07 06:48:25 +00:00
#ifndef _SNAKE_H_
#define _SNAKE_H_
2022-05-07 05:56:47 +00:00
#include <reg52.h>
#include <stdio.h>
#define bool char
2022-05-07 06:25:22 +00:00
#define MOVE_STATE char
#define R 0
#define U 1
#define L 2
#define D 3
2022-05-07 05:56:47 +00:00
struct DOT
{
unsigned char x;
unsigned char y;
} ;
2022-05-07 06:25:22 +00:00
typedef struct DOT Dot;
2022-05-07 05:56:47 +00:00
struct BODY
{
2022-05-07 06:25:22 +00:00
Dot d;
MOVE_STATE m;
2022-05-07 05:56:47 +00:00
};
typedef struct BODY Body;
2022-05-07 06:25:22 +00:00
2022-05-07 06:48:25 +00:00
#endif