diff --git a/bytable.cabal b/bytable.cabal
--- a/bytable.cabal
+++ b/bytable.cabal
@@ -2,7 +2,7 @@
 build-type:	Simple
 
 name:		bytable
-version:	0.0.0.7
+version:	0.0.0.8
 stability:	Experimental
 author:		Yoshikuni Jujo <PAF01143@nifty.ne.jp>
 maintainer:	Yoshikuni Jujo <PAF01143@nifty.ne.jp>
@@ -28,7 +28,7 @@
 source-repository	this
     type:	git
     location:	git://github.com/YoshikuniJujo/forest
-    tag:	bytable-0.0.0.7
+    tag:	bytable-0.0.0.8
 
 library
     hs-source-dirs:	src
diff --git a/src/Codec/Bytable/BigEndian.hs b/src/Codec/Bytable/BigEndian.hs
--- a/src/Codec/Bytable/BigEndian.hs
+++ b/src/Codec/Bytable/BigEndian.hs
@@ -19,6 +19,13 @@
 	fromByteString bs = Right $ byteStringToNum bs
 	toByteString = integralToByteString
 
+instance Bytable Word8 where
+	fromByteString bs
+		| BS.length bs <= 1 = Right $ byteStringToNum bs
+		| otherwise = Left
+			"Codec.Bytable.BigEndian: Bytable Word8: too large"
+	toByteString = integralToByteStringN 1
+
 instance Bytable Word16 where
 	fromByteString bs
 		| BS.length bs <= 2 = Right $ byteStringToNum bs
