You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
323 B
C++
19 lines
323 B
C++
4 weeks ago
|
/*
|
||
|
* PhaseBase.cpp
|
||
|
*
|
||
|
* Author: Aleksey Gerasimenko
|
||
|
* gerasimenko.aleksey.n@gmail.com
|
||
|
*/
|
||
|
|
||
|
#include "RUDRIVEFRAMEWORK/PhaseBase.h"
|
||
|
|
||
|
namespace RUDRIVEFRAMEWORK
|
||
|
{
|
||
|
//CONSTRUCTOR
|
||
|
PhaseBase::PhaseBase(uint16_t *memzone):
|
||
|
m_memzone(memzone),
|
||
|
cpu()
|
||
|
{}//CONSTRUCTOR
|
||
|
|
||
|
} /* namespace RUDRIVEFRAMEWORK */
|