Skip to content
Snippets Groups Projects
Select Git revision
  • 398f003182a6edebbc4a98c63b2a83a29ae31f0f
  • master default protected
2 results

cm0-ic.h

Blame
  • cm0-ic.h 384 B
    /*
     * Copyright (c) 2018-2020, University of Southampton.
     * All rights reserved.
     *
     * SPDX-License-Identifier: BSD-3-Clause
     */
    
    #ifndef CM0_IC_H
    #define CM0_IC_H
    
    #define PERSISTENT __attribute__((section(".persistent")))
    #define MMDATA __attribute__((section(".mmdata")))
    
    #include <stdint.h>
    #include "iclib/config.h"
    
    // Boot function
    void _start();
    
    #endif