(defPhoneSet
  osukr
  ;;;  Phone Features
  (;; vowel or consonant
   (vc + - 0)  
   ;; vowel height: high mid low
   (vheight h m l 0)
   ;; vowel frontness: front central back
   (vfront f c b 0)
   ;; consonant type: stop fricative affricate nasal lateral rhotic 
   ;;  approximant=glide
   (ctype s f a n l r  g 0)
   ;; place of articulation: labial alveolar palatal velar glottal
   (cplace l a p v g 0)
   ;; consonant voicing: lenis fortis aspirated
   (cvox l f a 0)
   )
  ;; Phone set members
  (
   (i   +  h  f  0   0   0)
   (eu  +  h  c  0   0   0)
   (u   +  h  b  0   0   0)
   (e   +  m  f  0   0   0)
   (eo  +  m  c  0   0   0)
   (o   +  m  b  0   0   0)
   (a   +  l  b  0   0   0)
   (b   -  0  0  s   l   l)  
   (ph  -  0  0  s   l   a)
   (pp  -  0  0  s   l   f)
   (d   -  0  0  s   a   l)  
   (th  -  0  0  s   a   a)
   (tt  -  0  0  s   a   f) 
   (j   -  0  0  a   p   l) 
   (ch  -  0  0  a   p   a) 
   (cc  -  0  0  a   p   f) 
   (g   -  0  0  s   v   l) 
   (kh  -  0  0  s   v   a) 
   (kk  -  0  0  s   v   f) 
   (m   -  0  0  n   l   l)    
   (n   -  0  0  n   a   l)
   (ng  -  0  0  n   v   l)
   (s   -  0  0  f   a   a)
   (ss  -  0  0  f   a   f)
   (w   -  0  0  g   l   l)
   (l   -  0  0  l   a   l)
   (r   -  0  0  r   a   l)
   (y   -  0  0  g   p   l)
   (h   -  0  0  f   g   a)
   (#  0  0  0  0   0   0)  
   )
  )

(PhoneSet.silences '(#))

(provide 'osu_korean_phones)





