Have encoder and writer in place

This commit is contained in:
Jaby
2022-10-18 22:23:32 +02:00
committed by Jaby
parent d71f20bd1a
commit 421eca06a0
6 changed files with 19 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
use super::{SectorWriter, {CDDesc, Error}};
pub fn encode_psx_image(_: CDDesc, _: &mut dyn SectorWriter) -> Result<(), Error> {
Err(Error::not_implemented("encode_psx_image"))
}