/* YOUR FILE-HEADER COMMENT HERE */ #if defined(__clang__) .text .p2align 4 # define FUNC_NAME(x) _##x # define DEFINE_FUNC(x) .global FUNC_NAME(x) __NL__ FUNC_NAME(x): #else .section .text # define FUNC_NAME(x) x # define DEFINE_FUNC(x) .globl FUNC_NAME(x) __NL__ FUNC_NAME(x): #endif DEFINE_FUNC(fizzbuzz_asm) /* * Reminders: * - x0 holds the target value * - x1 holds address to store number of fizzes * - x2 holds address to store number of buzzes * - Use registers x3 through x17 for temporary values */ /* PART 3: YOUR CODE HERE */ ret DEFINE_FUNC(asm_memcpy_256bit) /* PART 5: YOUR CODE HERE */ ret