Talk:Game port
Jump to navigation
Jump to search
Disabling Interrupts
asm volatile ("cli") may be reordered by the compiler as part of optimization. It should be changed to
asm volatile ("cli":::"memory")
Tree5678 09:25, 7 July 2022 (CDT)