o.pos = (4,4) o.data1 = [ (0,1),(1,2),(2,3),(3,4) ] o.dlst = [ 0x80|(a<<4)|d for (a,d) in o.data1 ] o.data2 = [ 3, 2, 1, 0 ] o.dlst += [ a<<4 for a in o.data2 ] o.data1 = [ (7,5),(5,2),(3,5),(1,2) ] o.dlst += [ 0x80|(a<<4)|d for (a,d) in o.data1 ] o.data2 = [ 1, 3, 5, 7 ] o.dlst += [ a<<4 for a in o.data2 ] RAM_TEST_4( o, 4, o.dlst, 'ram_test_4' ) sched.enque( (1,0), sched.enque_just, o.ram_test_4.en.set, 'H' ) sched.enque( (120,0), sched.quit ) # EOF