SquirrelJME/SquirrelJME

View on GitHub
assets/developer-notes/stephanie-gawroriski/2022/05/17.mkd

Summary

Maintainability
Test Coverage
# 2022/05/17

## 09:39

When I implement `SoftDouble`, depending on the source library I am basing
off if it uses `long` then I will use that for simplicity otherwise it will
be split via `int`. This way when I do major shifting around I do not need
to re-implement software `long` and instead just use it naturally as needed.
It will work just fine this way.