jmeaster30 / ocean

A C-like programming language (get it like sea-like like an ocean lol)
GNU General Public License v3.0
0 stars 0 forks source link

Need a rotate instruction #81

Closed jmeaster30 closed 8 months ago

jmeaster30 commented 9 months ago

this instruction will rotate a section of the stack

top > 1 > 2 > 3 > 4 > 5 rotate 3 top > 3 > 1 > 2 > 4 > 5

Note: rotate 1 is a nop and rotate 2 is the same as swap

jmeaster30 commented 8 months ago

This has been done