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
2022-05-07 14:25:22 +08:00

27 lines
282 B
C

#include <reg52.h>
#include <stdio.h>
#define bool char
#define MOVE_STATE char
#define R 0
#define U 1
#define L 2
#define D 3
struct DOT
{
unsigned char x;
unsigned char y;
} ;
typedef struct DOT Dot;
struct BODY
{
Dot d;
MOVE_STATE m;
};
typedef struct BODY Body;