TA147

Ejecicios y trabajos prácticos de la materia Taller de Sistemas Digitales (TA147)
Index Commits Files Refs
tps/1/src/rtl/semaphore_pkg.vhd (168B)
   1 package semaphore_pkg is
   2 
   3 type state_t is(
   4     state_1r_2g,
   5     state_1r_2y,
   6     state_1ry_2r,
   7     state_1g_2r,
   8     state_1y_2r,
   9     state_1r_2ry);
  10 
  11 end semaphore_pkg;