Sarebear6697 Sarebear6697 12-03-2024 Computers and Technology contestada [5] clear bits 7-4 of a 32-bit binary number. your assembly code must use a bitfield clear instruction. // clear bits 7-4 of n uint32_t clearbits7to4(uint32_t n) { return n & 0xffffff0f; }