You can call assembly functions using something similar to the code below. Essentially, it is a method of referencing functions from the .asm in your .c file.
// test_default.asm
.def test_func
test_func:
NOP
--------------------------------------
// main.c
extern void test_func();
void main(void)
{
test_func();
}