Set up a test framework.
[yaffs2.git] / direct / test-framework / yramsim.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system. 
3  *
4  * Copyright (C) 2002-2011 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
14  */
15
16 /*  NAND RAM Simulator for testing YAFFS */
17
18 #ifndef __YAFFS_RAM_SIM_H__
19 #define __YAFFS_RAM_SIM_H__
20
21
22 #include "yaffs_guts.h"
23
24 #define N_RAM_SIM_DEVS  2
25
26 struct yaffs_dev *yramsim_CreateRamSim(const YCHAR *name,
27                                                 u32 devId, u32 nBlocks,
28                                                 u32 start_block, u32 end_block);
29
30 #endif
31
32