init
This commit is contained in:
parent
64b237d49b
commit
1978f1277c
|
|
@ -0,0 +1 @@
|
||||||
|
#include "cache.h"
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
#pragma once
|
||||||
|
#include <iostream>
|
||||||
|
#include <ostream>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
class Cache
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
/* data */
|
||||||
|
public:
|
||||||
|
Cache(/* args */);
|
||||||
|
~Cache();
|
||||||
|
void writeCache(uint32_t address);
|
||||||
|
void readCache(uint32_t address);
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
Cache::Cache(/* args */)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
Cache::~Cache()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
void hello_world(int argc, char *argv[]) {
|
|
||||||
printf("\n\nHello World!\n\n");
|
|
||||||
|
|
||||||
for (unsigned int i = 0; i < (unsigned int)argc; i++)
|
|
||||||
printf("argument #%d = %s\n", i, argv[i]);
|
|
||||||
|
|
||||||
printf("\n\n");
|
|
||||||
}
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
void hello_world(int argc, char *argv[]);
|
|
||||||
Loading…
Reference in New Issue