Revision 0f76924ac531988665a0ba1ee8beb08dbcc14571 authored by Daniel Fort on 11 September 2018, 13:15:45 UTC, committed by Daniel Fort on 11 September 2018, 13:15:45 UTC
2 parent s 9b0392f + 194d849
Raw File
entry.S
/*##################################################################################
 #                                                                                 #
 #                          _____     _       _                                    #
 #                         |  ___|   | |     | |                                   #
 #                         |___ \  __| |_ __ | |_   _ ___                          #
 #                             \ \/ _` | '_ \| | | | / __|                         #
 #                         /\__/ / (_| | |_) | | |_| \__ \                         #
 #                         \____/ \__,_| .__/|_|\__,_|___/                         #
 #                                     | |                                         #
 #                                     |_|                                         #
 #                                                                                 #
 #################################################################################*/

/*##################################################################################
 #                                                                                 #
 #    Entry point for our code. This is the first thing that runs when the         #
 #    camera boots.                                                                #
 #                                                                                 #
 #################################################################################*/
    .text
    .org 0
    .globl _start, start

start:
_start:
        B       toggle_bootdisk
back to top