This commit is contained in:
LYC 2024-10-28 10:34:17 +08:00
parent 64b237d49b
commit 1978f1277c
4 changed files with 25 additions and 11 deletions

View File

@ -0,0 +1 @@
#include "cache.h"

View File

@ -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()
{
}

View File

@ -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");
}

View File

@ -1 +0,0 @@
void hello_world(int argc, char *argv[]);