repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
aluvalasuman/OpenSSL1.0.1cForAndroid
27,631
crypto/aes/asm/aes-armv4.S
#include "arm_arch.h" .text .code 32 .type AES_Te,%object .align 5 AES_Te: .word 0xc66363a5, 0xf87c7c84, 0xee777799, 0xf67b7b8d .word 0xfff2f20d, 0xd66b6bbd, 0xde6f6fb1, 0x91c5c554 .word 0x60303050, 0x02010103, 0xce6767a9, 0x562b2b7d .word 0xe7fefe19, 0xb5d7d762, 0x4dababe6, 0xec76769a .word 0x8fcaca45, 0x1f82829d, 0x...
aluvalasuman/OpenSSL1.0.1cForAndroid
41,292
crypto/aes/asm/aes-ia64.S
// ==================================================================== // Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL // project. Rights for redistribution and usage in source and binary // forms are granted according to the OpenSSL license. // ======================================================...
alvieboy/ZPUino-HDL
48,955
zpu/hdl/zpuino/simulator/executor.S
/* Registers EAX, ECX, and EDX are available for use in the function. C calling standard */ #define TRACE .globl execute #define STACKMASK 0x1FFF #define MEMMASK 0x3FFFFF #define STACKPAGEMASK (MEMMASK ^ STACKMASK) #define MAXADDRBITINCIO $27 .do_tick: push %edx // ...
alvieboy/ZPUino-HDL
2,583
zpu/hdl/zpuino/bootloader/loader.S
#include "register.h" .text //#undef PRELOADED .balign 16 /* Ensure we don't have a cache miss on this code */ .globl __flush __flush: /* poppc */ im 2 ; Flush cache, enable SRAM nop #ifdef ZPU20 im IO_SLOT(0) + 16 #else im IO_SLOT(4) + ...
alvieboy/ZPUino-HDL
1,835
zpu/hdl/zpuino/bootloader/boot-s.S
#include "register.h" #define STACKTOP (BOARD_MEMORYSIZE - 0x8) .text .globl spi_copy spi_copy: im STACKTOP popsp im spi_copy_impl poppc .globl start_sketch start_sketch: im STACKTOP popsp im __sketch_start poppc /* Interrupt handling */ .globl ___zpu_interrupt_ve...
alvieboy/ZPUino-HDL
10,020
zpu/hdl/zpuino/bootloader/crt0.S
/* Startup code for ZPU Copyright (C) 2005 Free Software Foundation, Inc. This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. In addition to the ...
alvieboy/ZPUino-HDL
9,747
zpu/sw/startup/nextgen_crt0.S
/* Startup code for ZPU Copyright (C) 2005 Free Software Foundation, Inc. This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. In addition to the ...
alvieboy/ZPUino-HDL
10,565
zpu/sw/startup/crt0.S
/* Startup code for ZPU Copyright (C) 2005 Free Software Foundation, Inc. This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. In addition to the ...
alvieboy/ZPUino-HDL
2,310
zpu/sw/freertos/port/portasm.s
.extern pxCurrentTCB .extern vTaskISRHandler .extern vTaskSwitchContext .extern uxCriticalNesting .extern pulISRStack .global __FreeRTOS_interrupt_handler .global VPortYieldASM .global vStartFirstTask /* interrupt controller port */ .equ INTERRUPT_ENABLE,0x8020 .macro portSAVE_CONTEXT /* PC is at the top o...
alvieboy/ZPUino-HDL
6,908
zpu/sw/ecos/repository/hal/zylin/arch/current/src/context.S
// #=========================================================================== // # // # context.S // # // # ZYLIN context switch code // # // #=========================================================================== //####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file i...
alvieboy/ZPUino-HDL
2,919
zpu/roadshow/roadshow/codesize/crt0_phi.S
/* Startup code for ZPU Copyright (C) 2005 Free Software Foundation, Inc. This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. In addition to the ...
alyssarosenzweig/scratch-llvm
1,265
helloworld.s
; ModuleID = 'tests/helloworld.c' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.9.0" @.str = private unnamed_addr constant [45 x i8] c"\0AUntil a proper stand...
AlynxZhou/flipclock-android
12,846
app/jni/SDL/src/video/arm/pixman-arm-neon-asm.S
/* * Copyright © 2009 Nokia Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, pub...
AlynxZhou/flipclock-android
19,392
app/jni/SDL/src/video/arm/pixman-arm-simd-asm.S
/* * Copyright (c) 2016 RISC OS Open Ltd * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including c...
am32-firmware/AM32-bootloader
10,005
Mcu/v203/Startup/startup_ch32v20x_D6.s
;/********************************** (C) COPYRIGHT ******************************* ;* File Name : startup_ch32v20x_D6.s ;* Author : WCH ;* Version : V1.0.0 ;* Date : 2021/06/06 ;* Description : CH32V203F6-CH32V203F8-CH32V203G6-CH32V203G8-CH32V203K6-CH32V203K8-CH32V2...
am32-firmware/AM32-bootloader
9,455
Mcu/f051/Startup/startup_stm32f051k6tx.s
/** ****************************************************************************** * @file startup_stm32f051x8.s * @author MCD Application Team * @brief STM32F051x4/STM32F051x6/STM32F051x8 devices vector table for GCC toolchain. * This module performs: * - Set the initi...
am32-firmware/AM32-bootloader
8,881
Mcu/f031/Startup/startup_stm32f031c6tx.s
/** ****************************************************************************** * @file startup_stm32f031x6.s * @author MCD Application Team * @brief STM32F031x4/STM32F031x6 devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
11,792
Mcu/l431/Startup/startup_stm32l431xx.s
/** ****************************************************************************** * @file startup_stm32l431xx.s * @author MCD Application Team * @brief STM32L431xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
17,326
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l412xx.s
;******************************************************************************** ;* File Name : startup_stm32l412xx.s ;* Author : MCD Application Team ;* Description : STM32L412xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
18,668
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l433xx.s
;******************************************************************************** ;* File Name : startup_stm32l433xx.s ;* Author : MCD Application Team ;* Description : STM32L433xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,862
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4s9xx.s
;******************************************************************************** ;* File Name : startup_stm32l4s9xx.s ;* Author : MCD Application Team ;* Description : STM32L4S9xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
17,916
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l432xx.s
;******************************************************************************** ;* File Name : startup_stm32l432xx.s ;* Author : MCD Application Team ;* Description : STM32L432xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
20,788
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l485xx.s
;******************************************************************************** ;* File Name : startup_stm32l485xx.s ;* Author : MCD Application Team ;* Description : STM32L485xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,607
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l496xx.s
;******************************************************************************** ;* File Name : startup_stm32l496xx.s ;* Author : MCD Application Team ;* Description : STM32L496xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,743
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4s5xx.s
;******************************************************************************** ;* File Name : startup_stm32l4s5xx.s ;* Author : MCD Application Team ;* Description : STM32L4S5xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
19,105
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l451xx.s
;******************************************************************************** ;* File Name : startup_stm32l451xx.s ;* Author : MCD Application Team ;* Description : STM32L451xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
18,045
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l442xx.s
;******************************************************************************** ;* File Name : startup_stm32l442xx.s ;* Author : MCD Application Team ;* Description : STM32L442xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,736
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4s7xx.s
;******************************************************************************** ;* File Name : startup_stm32l4s7xx.s ;* Author : MCD Application Team ;* Description : STM32L4S7xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
17,455
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l422xx.s
;******************************************************************************** ;* File Name : startup_stm32l422xx.s ;* Author : MCD Application Team ;* Description : STM32L422xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
20,914
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l486xx.s
;******************************************************************************** ;* File Name : startup_stm32l486xx.s ;* Author : MCD Application Team ;* Description : STM32L486xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,716
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4r9xx.s
;******************************************************************************** ;* File Name : startup_stm32l4r9xx.s ;* Author : MCD Application Team ;* Description : STM32L4R9xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,768
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4a6xx.s
;******************************************************************************** ;* File Name : startup_stm32l4a6xx.s ;* Author : MCD Application Team ;* Description : STM32L4A6xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
20,793
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l476xx.s
;******************************************************************************** ;* File Name : startup_stm32l476xx.s ;* Author : MCD Application Team ;* Description : STM32L476xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,533
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4q5xx.s
;******************************************************************************** ;* File Name : startup_stm32l4q5xx.s ;* Author : MCD Application Team ;* Description : STM32L4Q5xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
18,427
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l431xx.s
;******************************************************************************** ;* File Name : startup_stm32l431xx.s ;* Author : MCD Application Team ;* Description : STM32L431xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
19,220
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l452xx.s
;******************************************************************************** ;* File Name : startup_stm32l452xx.s ;* Author : MCD Application Team ;* Description : STM32L452xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,285
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4p5xx.s
;******************************************************************************** ;* File Name : startup_stm32l4p5xx.s ;* Author : MCD Application Team ;* Description : STM32L4P5xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
20,675
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l475xx.s
;******************************************************************************** ;* File Name : startup_stm32l475xx.s ;* Author : MCD Application Team ;* Description : STM32L475xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
19,349
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l462xx.s
;******************************************************************************** ;* File Name : startup_stm32l462xx.s ;* Author : MCD Application Team ;* Description : STM32L462xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
20,535
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l471xx.s
;******************************************************************************** ;* File Name : startup_stm32l471xx.s ;* Author : MCD Application Team ;* Description : STM32L471xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
18,797
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l443xx.s
;******************************************************************************** ;* File Name : startup_stm32l443xx.s ;* Author : MCD Application Team ;* Description : STM32L443xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,590
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4r5xx.s
;******************************************************************************** ;* File Name : startup_stm32l4r5xx.s ;* Author : MCD Application Team ;* Description : STM32L4R5xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
22,590
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/iar/startup_stm32l4r7xx.s
;******************************************************************************** ;* File Name : startup_stm32l4r7xx.s ;* Author : MCD Application Team ;* Description : STM32L4R7xx Ultra Low Power Devices vector ;* This module performs: ;* - Set the ...
am32-firmware/AM32-bootloader
11,069
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l412xx.s
/** ****************************************************************************** * @file startup_stm32l412xx.s * @author MCD Application Team * @brief STM32L412xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
11,953
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l433xx.s
/** ****************************************************************************** * @file startup_stm32l433xx.s * @author MCD Application Team * @brief STM32L433xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
14,286
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4s9xx.s
/** ****************************************************************************** * @file startup_stm32l4s9xx.s * @author MCD Application Team * @brief STM32L4S9xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
11,433
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l432xx.s
/** ****************************************************************************** * @file startup_stm32l432xx.s * @author MCD Application Team * @brief STM32L432xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
13,357
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l485xx.s
/** ****************************************************************************** * @file startup_stm32l485xx.s * @author MCD Application Team * @brief STM32L485xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
14,250
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l496xx.s
/** ****************************************************************************** * @file startup_stm32l496xx.s * @author MCD Application Team * @brief STM32L496xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
14,207
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4s5xx.s
/** ****************************************************************************** * @file startup_stm32l4s5xx.s * @author MCD Application Team * @brief STM32L4S5xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
12,200
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l451xx.s
/** ****************************************************************************** * @file startup_stm32l451xx.s * @author MCD Application Team * @brief STM32L451xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
11,513
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l442xx.s
/** ****************************************************************************** * @file startup_stm32l442xx.s * @author MCD Application Team * @brief STM32L442xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
14,207
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4s7xx.s
/** ****************************************************************************** * @file startup_stm32l4s7xx.s * @author MCD Application Team * @brief STM32L4S7xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
11,148
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l422xx.s
/** ****************************************************************************** * @file startup_stm32l412xx.s * @author MCD Application Team * @brief STM32L412xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
13,437
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l486xx.s
/** ****************************************************************************** * @file startup_stm32l486xx.s * @author MCD Application Team * @brief STM32L486xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
14,191
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4r9xx.s
/** ****************************************************************************** * @file startup_stm32l4r9xx.s * @author MCD Application Team * @brief STM32L4R9xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
14,350
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4a6xx.s
/** ****************************************************************************** * @file startup_stm32l4a6xx.s * @author MCD Application Team * @brief STM32L4A6xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
13,353
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l476xx.s
/** ****************************************************************************** * @file startup_stm32l476xx.s * @author MCD Application Team * @brief STM32L476xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
14,056
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4q5xx.s
/** ****************************************************************************** * @file startup_stm32l4q5xx.s * @author MCD Application Team * @brief STM32L4Q5xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
11,792
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l431xx.s
/** ****************************************************************************** * @file startup_stm32l431xx.s * @author MCD Application Team * @brief STM32L431xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
12,281
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l452xx.s
/** ****************************************************************************** * @file startup_stm32l452xx.s * @author MCD Application Team * @brief STM32L452xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
13,898
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4p5xx.s
/** ****************************************************************************** * @file startup_stm32l4p5xx.s * @author MCD Application Team * @brief STM32L4P5xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
13,277
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l475xx.s
/** ****************************************************************************** * @file startup_stm32l475xx.s * @author MCD Application Team * @brief STM32L475xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
12,361
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l462xx.s
/** ****************************************************************************** * @file startup_stm32l462xx.s * @author MCD Application Team * @brief STM32L462xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
13,187
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l471xx.s
/** ****************************************************************************** * @file startup_stm32l471xx.s * @author MCD Application Team * @brief STM32L471xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
12,033
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l443xx.s
/** ****************************************************************************** * @file startup_stm32l443xx.s * @author MCD Application Team * @brief STM32L443xx devices vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
14,112
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4r5xx.s
/** ****************************************************************************** * @file startup_stm32l4r5xx.s * @author MCD Application Team * @brief STM32L4R5xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
14,112
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/gcc/startup_stm32l4r7xx.s
/** ****************************************************************************** * @file startup_stm32l4r7xx.s * @author MCD Application Team * @brief STM32L4R7xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
16,397
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l412xx.s
;******************************************************************************* ;* File Name : startup_stm32l412xx.s ;* Author : MCD Application Team ;* Description : STM32L412xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
17,268
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l433xx.s
;******************************************************************************* ;* File Name : startup_stm32l433xx.s ;* Author : MCD Application Team ;* Description : STM32L433xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,315
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4s9xx.s
;******************************************************************************* ;* File Name : startup_stm32l4s9xx.s ;* Author : MCD Application Team ;* Description : STM32L4S9xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
16,795
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l432xx.s
;******************************************************************************* ;* File Name : startup_stm32l432xx.s ;* Author : MCD Application Team ;* Description : STM32L432xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
18,610
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l485xx.s
;******************************************************************************* ;* File Name : startup_stm32l485xx.s ;* Author : MCD Application Team ;* Description : STM32L485xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,032
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l496xx.s
;******************************************************************************* ;* File Name : startup_stm32l496xx.s ;* Author : MCD Application Team ;* Description : STM32L496xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,228
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4s5xx.s
;******************************************************************************* ;* File Name : startup_stm32l4s5xx.s ;* Author : MCD Application Team ;* Description : STM32L4S5xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
17,586
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l451xx.s
;******************************************************************************* ;* File Name : startup_stm32l451xx.s ;* Author : MCD Application Team ;* Description : STM32L451xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
16,882
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l442xx.s
;******************************************************************************* ;* File Name : startup_stm32l442xx.s ;* Author : MCD Application Team ;* Description : STM32L442xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,228
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4s7xx.s
;******************************************************************************* ;* File Name : startup_stm32l4s7xx.s ;* Author : MCD Application Team ;* Description : STM32L4S7xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
16,484
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l422xx.s
;******************************************************************************* ;* File Name : startup_stm32l422xx.s ;* Author : MCD Application Team ;* Description : STM32L422xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
18,698
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l486xx.s
;******************************************************************************* ;* File Name : startup_stm32l486xx.s ;* Author : MCD Application Team ;* Description : STM32L486xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,214
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4r9xx.s
;******************************************************************************* ;* File Name : startup_stm32l4r9xx.s ;* Author : MCD Application Team ;* Description : STM32L4R9xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,125
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4a6xx.s
;******************************************************************************* ;* File Name : startup_stm32l4a6xx.s ;* Author : MCD Application Team ;* Description : STM32L4A6xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
18,626
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l476xx.s
;******************************************************************************* ;* File Name : startup_stm32l476xx.s ;* Author : MCD Application Team ;* Description : STM32L476xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,114
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4q5xx.s
;******************************************************************************* ;* File Name : startup_stm32l4q5xx.s ;* Author : MCD Application Team ;* Description : STM32L4Q5xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
17,109
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l431xx.s
;******************************************************************************* ;* File Name : startup_stm32l431xx.s ;* Author : MCD Application Team ;* Description : STM32L431xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
17,659
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l452xx.s
;******************************************************************************* ;* File Name : startup_stm32l452xx.s ;* Author : MCD Application Team ;* Description : STM32L452xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
19,940
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4p5xx.s
;******************************************************************************* ;* File Name : startup_stm32l4p5xx.s ;* Author : MCD Application Team ;* Description : STM32L4P5xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
18,555
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l475xx.s
;******************************************************************************* ;* File Name : startup_stm32l475xx.s ;* Author : MCD Application Team ;* Description : STM32L475xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
17,746
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l462xx.s
;******************************************************************************* ;* File Name : startup_stm32l462xx.s ;* Author : MCD Application Team ;* Description : STM32L462xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
18,443
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l471xx.s
;******************************************************************************* ;* File Name : startup_stm32l471xx.s ;* Author : MCD Application Team ;* Description : STM32L471xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
17,355
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l443xx.s
;******************************************************************************* ;* File Name : startup_stm32l443xx.s ;* Author : MCD Application Team ;* Description : STM32L443xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,127
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4r5xx.s
;******************************************************************************* ;* File Name : startup_stm32l4r5xx.s ;* Author : MCD Application Team ;* Description : STM32L4R5xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
20,127
Mcu/l431/Drivers/CMSIS/Device/ST/STM32L4xx/Source/Templates/arm/startup_stm32l4r7xx.s
;******************************************************************************* ;* File Name : startup_stm32l4r7xx.s ;* Author : MCD Application Team ;* Description : STM32L4R7xx Ultra Low Power devices vector table for MDK-ARM toolchain. ;* This module performs: ;* ...
am32-firmware/AM32-bootloader
9,499
Mcu/e230/Startup/startup_gd32e23x.s
/** ****************************************************************************** * @file startup_gd32e23x.s * @author * @version V1.0.0 * @date 10/15/2010 * @brief GD32E23x Value Series startup file * This module performs: * - Set the initial SP * ...
am32-firmware/AM32-bootloader
16,506
Mcu/f415/Startup/startup_at32f415.s
/** ****************************************************************************** * @file startup_at32f415.s * @version v2.0.7 * @date 2022-08-16 * @brief at32f415xx devices vector table for gcc toolchain. * this module performs: * - set the initial sp * - set ...
am32-firmware/AM32-bootloader
12,523
Mcu/g431/Startup/startup_stm32g431xx.s
/** ****************************************************************************** * @file startup_stm32g431xx.s * @author MCD Application Team * @brief STM32G431xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
am32-firmware/AM32-bootloader
20,529
Mcu/g431/Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/startup_stm32gbk1cb.s
;******************************************************************************* ;* @File Name : startup_stm32gbk1cb.s ;* @Author : MCD Application Team ;* @Brief : STM32GBK1CB Devices vector ;******************************************************************************* ;* Descriptio...
am32-firmware/AM32-bootloader
20,780
Mcu/g431/Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/startup_stm32g441xx.s
;******************************************************************************* ;* @File Name : startup_stm32g441xx.s ;* @Author : MCD Application Team ;* @Brief : STM32G441xx Devices vector ;******************************************************************************* ;* Descriptio...
am32-firmware/AM32-bootloader
22,573
Mcu/g431/Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/startup_stm32g491xx.s
;******************************************************************************* ;* @File Name : startup_stm32g491xx.s ;* @Author : MCD Application Team ;* @Brief : STM32G491xx Devices vector ;******************************************************************************* ;* Descriptio...
am32-firmware/AM32-bootloader
20,649
Mcu/g431/Drivers/CMSIS/Device/ST/STM32G4xx/Source/Templates/iar/startup_stm32g431xx.s
;******************************************************************************* ;* @File Name : startup_stm32g431xx.s ;* @Author : MCD Application Team ;* @Brief : STM32G431xx Devices vector ;******************************************************************************* ;* Descriptio...