Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
lib/Instructions/Instructions.h
- Committer:
- Kern_EL17KJTF
- Date:
- 2019-05-08
- Revision:
- 14:d6fbbb912425
- Child:
- 22:d265f506446b
- Child:
- 33:3894a7f846a0
File content as of revision 14:d6fbbb912425:
/* ELEC2645 Project Instructions.h Class file for Instructions in Donkey Kong game. */ #ifndef INSTRUCTIONS_H #define INSTRUCTIONS_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" class Instructions { public: Instructions(); ~Instructions(); void instructions_run(Gamepad &pad, N5110 &lcd); }; #endif