DHBW-SysProgCompiler / BattleShipsModules

Modules for BattleShips
GNU General Public License v3.0
0 stars 0 forks source link

Add custom Math-Library #7

Closed Erix0815 closed 7 months ago

Erix0815 commented 7 months ago

since the arm-cortex-m0 does not have a DIV-Instruction C cannot compile divisions (i.e.: int a = 26/9;)

a new math.c module should implement missing important functions like:

uint32_t divide (uint32_t num, uint32_t den); uint32_t mod (uint32_t value, uint32_t mod);

Erix0815 commented 7 months ago

implemented and tested