mirror of https://github.com/probonopd/MiniDexed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
349 B
23 lines
349 B
//
|
|
// kernel.cpp
|
|
//
|
|
#include "kernel.h"
|
|
#include <iostream>
|
|
|
|
CKernel::CKernel (void)
|
|
: CStdlibAppStdio ("minidexed")
|
|
{
|
|
mActLED.Blink (5); // show we are alive
|
|
}
|
|
|
|
bool CKernel::Initialize (void)
|
|
{
|
|
return CStdlibAppStdio::Initialize ();
|
|
}
|
|
|
|
CStdlibApp::TShutdownMode CKernel::Run (void)
|
|
{
|
|
std::cout << "Hello MiniDexed!\n";
|
|
|
|
return ShutdownHalt;
|
|
}
|
|
|