1 " 2 " BEGIN INCLUDE FILE mctseg.incl.alm 3 " 4 " defines the wired segment layout for machine condition trace 5 " created 3/3/77 by James A. Bush 6 " 7 equ mctseg.mc_lim,0 du - the end of the wired trace buffer 8 equ mctseg.mc_nxtad,0 dl - address of next storage area for M. C. 9 equ mctseg.mc_strt,1 du - beginning of M. C. storage mc_strt 10 equ mctseg.mc_cnt,1 dl - number of M. C.s that can be stored 11 equ mctseg.hr_lim,2 du - the end of history register storage area 12 equ mctseg.hr_nxtad,2 dl - address of nxt storage area for history regs 13 equ mctseg.hr_strt,3 du - beginning of history register storage 14 equ mctseg.hr_cnt,3 dl - number of history regs that can be stored 15 equ mctseg.x0save,4 du - safe storage for x0 16 equ mctseg.mc_size,48 size of machine condition block - 48 words 17 equ mctseg.hr_size,128 size of history register block - 128 words 18 " 19 " END INCLUDE FILE mctseg.incl.alm 20 "