Ativa o menu
Alternar menu de preferências
Alternar menu pessoal
Não autenticado(a)
Your IP address will be publicly visible if you make any edits.
Revisão de 16h27min de 8 de março de 2026 por MegaManx3 (discussão | contribs) (Criou página com 'Map a fixed point value to the previous whole number. <pre> function int floor (int x) { return x & 0xFFFF0000; } </pre> category:Sample ACS functions')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)

Map a fixed point value to the previous whole number.

function int floor (int x)
{
    return x & 0xFFFF0000;
}