Exemplo n.º 1
0
void segment_write_byte(UID id,BYTE seg) 
{
  if (display.uid==id) 
  {
  display.seg = seg;
  segment_set (seg);	
  }
}
Exemplo n.º 2
0
void
TLSModelEngine::isotropic_fit_segment(const std::string& frag_id1,
				      const std::string& frag_id2, 
				      IsotropicFitTLSModelResult& itls_result) {
  Chain::SegmentSet segment_set(&chain);
  segment_set.add_segment(frag_id1, frag_id2);
  isotropic_fit(segment_set, itls_result);
}
Exemplo n.º 3
0
void segment_init (void)
{
/* initalize physical device ... */

*IOPMOD 	|= SEG_MASK;
*IOPDATA 	|= SEG_MASK;

/* setup internal structure ... */

display.uid	= NONE;
display.seg 	= 0; 
segment_set 	(0);

}