summaryrefslogtreecommitdiff
path: root/flash.h
blob: 183e9323e1e9d16ede9e30bd15a10b02dd87a85c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef FLASH_H_
#define FLASH_H_

#include "globals.h"

void initFlash(FlashStruct *mem, int starting_location);
int readUserBlock(FlashStruct *mem);
void writeUserBlock(FlashStruct *mem, int addr, int numbytes);

#endif