Declare some empty functions to make scan and nexus code happy.

r1628 | ffr | 2007-03-12 08:59:27 +1100 (Mon, 12 Mar 2007) | 2 lines
This commit is contained in:
Ferdi Franceschini
2007-03-12 08:59:27 +11:00
committed by Douglas Clowes
parent 1745977df4
commit 307a3ccc6b

View File

@@ -2,7 +2,7 @@ MakeHM hmm SIM
hmm configure HistMode Normal hmm configure HistMode Normal
hmm configure OverFlowMode Ceil hmm configure OverFlowMode Ceil
hmm configure dim0 512 hmm configure dim0 512
hmm configure dim1 128 hmm configure dim1 [expr 480 * 8 - 1]
hmm configure rank 2 hmm configure rank 2
hmm configure BinWidth 4 hmm configure BinWidth 4
#hmm configure BinWidth 1 #hmm configure BinWidth 1
@@ -12,8 +12,16 @@ hmm configure Counter counter
hmm configure init 0 hmm configure init 0
hmm init hmm init
MakeScanCommand hmscan bm scan.hdd recover.bin #MakeScanCommand hmscan bm scan.hdd recover.bin
namespace eval histogram_memory {
proc hs_prepare {scanobjectname userobjectname} {} proc hs_prepare {scanobjectname userobjectname} {}
proc hs_finish {scanobjectname userobjectname} {} proc hs_finish {scanobjectname userobjectname} {}
proc hs_count_bm_controlled {scanobjectname userobjectname point mode preset} {} proc hs_count_bm_controlled {scanobjectname userobjectname point mode preset} {}
proc hmm_initialize {} {}
proc hmm_setup {mode bankNum rankNum nyc nxc ntc} {}
}
publish ::histogram_memory::hs_prepare user
publish ::histogram_memory::hs_finish user
publish ::histogram_memory::hs_count_bm_controlled user