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:48:25 +08:00

31 lines
No EOL
325 B
C

#ifndef _SNAKE_H_
#define _SNAKE_H_
#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;
#endif