summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302/startup/memcheck.c
blob: 2b318529e0d66571f4148842499ff76e2abebd17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*****************************************************************************/
/*
  $Id$

  Memory check routines.

  The production test is a destrucive full test.
  The boot test is a minimal, non-desctructive.
  The partial memory test performs a scetion at a time, and gets
  called in a repeated fashion to completely check the memory,

 */
/*****************************************************************************/

void
production_memory_test(void)
{
}

void
boot_memory_test(void)
{
}

void
reset_partial_memory_test(void)
{
}

void
partial_memory_test(void)
{
}