This commit is contained in:
Jongseo Lee (JS)
2022-08-30 11:26:35 +09:00
committed by GitHub
parent 84548a8325
commit 1b2b4ef0df

View File

@@ -13,7 +13,7 @@ pub(crate) fn add(lhs: usize, rhs: usize) -> usize {
todo!()
}
/// Adds two unsigned words. If underflow happens, just wrap around.
/// Subs two unsigned words. If overflow happens, just wrap around.
pub(crate) fn sub(lhs: usize, rhs: usize) -> usize {
todo!()
}