Skip to content
Snippets Groups Projects
Select Git revision
  • 04b9147e150d2d6fa3750f312fe328b6a71c1b28
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

modffi.c

Blame
  • api_common.h 195 B
    #include <stdint.h>
    
    #define API_CALL_SEMA 0
    
    struct api_call
    {
    	uint32_t id;
    	uint8_t returning;
    	unsigned char buf[1];
    };
    
    static struct api_call *ApiCallSpace = (struct api_call *)0x20080001;