repo_id stringlengths 5 115 | size int64 590 5.01M | file_path stringlengths 4 212 | content stringlengths 590 5.01M |
|---|---|---|---|
seanchatmangpt/naut | 5,827 | nautilus_assembly/src/nautilus_hot_paths.s | // nautilus_hot_paths.s - Assembly replacements for Nautilus hot paths
.section __TEXT,__text
.global _fast_price_operations
.align 4
// Ultra-fast price operations
// Args: x0=price_int (scaled by 1e8), x1=operation_type
// Returns: x0=result
_fast_price_operations:
stp x29, x30, [sp, #-16]!
mov x29, sp
... |
seanchatmangpt/naut | 4,022 | nautilus_assembly/src/ultra_fast_order_book.s | // Ultra-fast order book for maximum performance
// Uses direct memory indexing for O(1) updates
.section __TEXT,__text
.global _ultra_fast_book_update
.global _ultra_fast_book_init
.align 4
// Initialize order book with price levels
// x0 = book_ptr, x1 = min_price, x2 = max_price, x3 = tick_size
_ultra_fast_book_ini... |
seanchatmangpt/naut | 5,658 | nautilus_assembly/src/signals.s | // nautilus_assembly/src/signals.s
// High-performance signal calculation engine
.section __TEXT,__text
.global _nautilus_calculate_ema_vectorized
.align 4
// Args: x0=prices*, x1=output*, x2=count, x3=alpha (as float in s0)
_nautilus_calculate_ema_vectorized:
stp x29, x30, [sp, #-32]!
stp x19, x20, [sp, #16]
... |
seanchatmangpt/naut | 3,634 | nautilus_assembly/src/production_risk.s | // Ultimate fast risk validation - production ready
.section __TEXT,__text
.global _ultra_fast_risk_batch_simd
.global _ultra_fast_risk_single
.align 4
// Single risk check - optimized for hot path
// x0 = packed_order (price:32|qty:32), x1 = packed_limits
// Returns: x0 = 0 (valid) or 1 (invalid)
_ultra_fast_risk_sin... |
seanchatmangpt/naut | 6,535 | nautilus_assembly/src/order_book.s | // nautilus_assembly/src/order_book.s
// Ultra-fast order book processing for M3 Max ARM64
.section __DATA,__data
.align 6 // 64-byte cache line alignment
// Order book level structure (16 bytes, cache-friendly)
.struct 0
price_field: .space 8 // f64 price
quantity_field: .space 8 // f64 qu... |
seanchatmangpt/naut | 3,732 | nautilus_assembly/src/risk_engine.s | // nautilus_assembly/src/risk_engine.s
// Ultra-fast risk validation engine
.section __TEXT,__text
.global _nautilus_validate_order_batch
.align 4
// Args: x0=orders*, x1=positions*, x2=limits*, x3=count
// Returns: x0=bitmask of valid orders
_nautilus_validate_order_batch:
stp x29, x30, [sp, #-16]!
mov x29, s... |
seanchatmangpt/naut | 1,463 | nautilus_assembly/src/simple_ultra_fast.s | // Simplest possible ultra-fast order book
// Direct memory writes only - no fancy features
.section __TEXT,__text
.global _ultra_fast_update
.global _ultra_fast_batch
.align 4
// Single update - just a store instruction
// x0 = base_ptr, x1 = offset, x2 = value
// This is literally the fastest possible: 1 instruction... |
seanchatmangpt/naut | 2,716 | nautilus_assembly/src/optimized_core.s | // Fixed assembly for macOS ARM64 - order_book.s
.section __TEXT,__text
.global _fast_order_book_update
.align 4
// Simple but extremely fast order book update
// Args: x0=price, x1=quantity, x2=side (0=bid, 1=ask)
// Returns: x0=update_result (0=success)
_fast_order_book_update:
// Ultra-minimal assembly - just a... |
Serena-H1/deer-node | 62,743 | vendors/ring/crypto/poly1305/poly1305_arm_asm.S | #if defined(__has_feature)
#if __has_feature(memory_sanitizer) && !defined(OPENSSL_NO_ASM)
#define OPENSSL_NO_ASM
#endif
#endif
#if defined(__arm__) && !defined(OPENSSL_NO_ASM) && !defined(__APPLE__)
#pragma GCC diagnostic ignored "-Wlanguage-extension-token"
#if defined(BORINGSSL_PREFIX)
#include <boringssl_prefix_... |
Serena-H1/deer-node | 41,871 | vendors/ring/crypto/curve25519/asm/x25519-asm-arm.S | /* Copyright (c) 2015, Google Inc.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS... |
Servus-Altissimi/Mindada | 5,421 | boot.s | # Multiboot header
.section .multiboot
.align 8
multiboot2_header:
.long 0xE85250D6 # Magic number for Multiboot2
.long 0 # Architecture: 0 = i386 (protected mode)
.long multiboot2_header_end - multiboot2_header # Header length
.long -(0xE85250D6 + 0 + (m... |
shadyfennec/tailswish | 1,312 | examples/division.s | main:
push #38 ; Divide 38...
push #5 ; by 5.
call divide ; Call the function, top of the stack is remainder, below
; is the result.
main_loop:
jmp main_loop
;; Divides the second-to-top number on the stack by the top number on the stack.
;;
;; Sta... |
shawnschulz/shmageOS_RISCV | 1,269 | src/asm/boot.S | # boot.S
# bootloader for SoS
# Stephen Marz
# 8 February 2019
.option norvc
.section .data
.section .text.init
.global _start
_start:
# Any hardware threads (hart) that are not bootstrapping
# need to wait for an IPI
csrr t0, mhartid
bnez t0, 3f
# SATP should be zero, but let's make sure
csrw satp, zero
.option ... |
shredible26/Assembly-Functions | 2,419 | isqrt_prog.s | .data
# array terminated by 0 (which is not part of the array)
xarr:
.word 1
.word 12
.word 225
.word 169
.word 16
.word 25
.word 100
.word 81
.word 99
.word 121
.word 144
.word 0
.text
# main(): ##################################################
# uint* j = xarr
# whil... |
shredible26/Assembly-Functions | 1,091 | collatz.s | # Directory ID: shreyv
# UnivID: 118019727
.data
.text
.globl collatz
# Arguments:
# $s1 - the number n
# $s2 - the depth d
# Returns:
# $v0 - the depth at which n becomes 1
collatz:
addiu $sp, $sp, -32 # Allocate stack space
sw $ra, 28($sp) # Save return address
sw $s1, 24... |
shredible26/Assembly-Functions | 2,248 | collatz_driver.s | .data
arrow: .asciiz " -> "
.text
main:
li $sp, 0x7ffffffc # initialize $sp
# PROLOGUE
subu $sp, $sp, 8 # expand stack by 8 bytes
sw $ra, 8($sp) # push $ra (ret addr, 4 bytes)
sw $fp, 4($sp) # push $fp (4 bytes)
addu ... |
shredible26/Assembly-Functions | 2,731 | reverse_prefix_sum_driver.s | .data
# uint arrays, each terminated by -1 (which is not part of array)
arr0:
.word 1, 2, 3, 4, -1
arr1:
.word 2, 3, 4, 5, -1
arr2:
.word 5, 4, 3, 2, -1
arr3:
.word 1, 2, 1, 2, 1, 2, 3, 1, 2, 3, 1, 2, 3, 4, -1
overflow:
.word 1, 1, 1, 1, 2147483646, -1
.text
# main(): ###########################... |
shredible26/Assembly-Functions | 1,550 | isqrt_driver.s | .data
# array terminated by 0 (which is not part of the array)
xarr:
.word 1
.word 12
.word 225
.word 169
.word 16
.word 25
.word 100
.word 81
.word 99
.word 121
.word 144
.word 0
.text
# main(): ##################################################
# uint* j = xarr
# whil... |
shredible26/Assembly-Functions | 2,097 | is_palindrome.s | # Directory ID: shreyv
# UnivID: 118019727
.data
.text
.globl is_palindrome
.globl strlen
# strlen function
# Arguments:
# a0 - pointer to the string
# Returns:
# v0 - length of the string
strlen:
move $t0, $a0
li $v0, 0 # Initialize length to 0
strlen_loop:
lb ... |
shredible26/Assembly-Functions | 3,432 | collatz_prog.s | .data
# array terminated by 0 (which is not part of the array)
xarr:
.word 1, 3, 5, 7, 9, 0
.data
arrow: .asciiz " -> "
.text
main:
li $sp, 0x7ffffffc # initialize $sp
# PROLOGUE
subu $sp, $sp, 8 # expand stack by 8 bytes
sw $ra, 8($sp) # push $r... |
shredible26/Assembly-Functions | 4,515 | reverse_prefix_sum_prog.s | .data
# uint arrays, each terminated by -1 (which is not part of array)
arr0:
.word 1, 2, 3, 4, -1
arr1:
.word 2, 3, 4, 5, -1
arr2:
.word 5, 4, 3, 2, -1
arr3:
.word 1, 2, 1, 2, 1, 2, 3, 1, 2, 3, 1, 2, 3, 4, -1
overflow:
.word 1, 1, 1, 1, 2147483646, -1
.text
# main(): ###########################... |
shredible26/Assembly-Functions | 1,918 | is_palindrome_driver.s | .data
str1:
.asciiz "abba"
str2:
.asciiz "racecar"
str3:
.asciiz "swap paws",
str4:
.asciiz "not a palindrome"
str5:
.asciiz "another non palindrome"
str6:
.asciiz "almost but tsomla"
# array of char pointers = {&str1, &str2, ..., &str6}
ptr_arr:
.word str1, str2, str3, str4, str5, str6, 0
yes... |
shredible26/Assembly-Functions | 1,784 | reverse_prefix_sum.s | .data
.text
.globl reverse_prefix_sum
# reverse_prefix_sum function
# Arguments:
# a0 - pointer to the array arr
# Returns:
# v0 - sum of the array elements from the current position to the end
reverse_prefix_sum:
# Prologue
addi $sp, $sp, -16 # Allocate stack space for saved registers
s... |
sidsabh/JellyOS | 4,679 | kern/src/init/init.s | // #define EL0 0b00
// #define EL1 0b01
// #define EL2 0b10
// #define EL3 0b11
.section .text.init
.global asm_start
asm_start:
// read cpu affinity, start core 0, halt rest
mrs x1, MPIDR_EL1
and x1, x1, #3
cbz x1, setup
halt:
// core affinity != 0, halt it
wfe
b halt
... |
sidsabh/JellyOS | 4,449 | kern/src/init/vectors.s | .global vec_context_switch
vec_context_switch:
mov x28, lr
bl vec_context_save
mov x0, x29 // info
mrs x1, ESR_EL1 // esr
mov x2, SP // tf
bl handle_exception
mov x0, sp // old_sp
bl switch_stack
mov sp, x0
mov lr, x28
b vec_context_res... |
SirLearning/hpc | 4,289 | ch02/debugging/gdbcode/debugcode.O3.frame.s | .file "debugcode.cpp"
.intel_syntax noprefix
.text
.p2align 4
.globl _Z6vecaddPdS_S_m
.type _Z6vecaddPdS_S_m, @function
_Z6vecaddPdS_S_m:
.LFB1763:
.cfi_startproc
test rcx, rcx
je .L2
cmp rcx, 1
je .L6
mov r8, rcx
xor eax, eax
shr r8
sal r8, 4
.p2align 4,,10
.p2align 3
.L4:
movupd xmm0, XMMWORD PTR [r... |
SirLearning/hpc | 4,361 | ch02/debugging/gdbcode/debugcode.O3.s | .file "debugcode.cpp"
.intel_syntax noprefix
.text
.p2align 4
.globl _Z6vecaddPdS_S_m
.type _Z6vecaddPdS_S_m, @function
_Z6vecaddPdS_S_m:
.LFB1763:
.cfi_startproc
test rcx, rcx
je .L2
cmp rcx, 1
je .L6
mov r8, rcx
xor eax, eax
shr r8
sal r8, 4
.p2align 4,,10
.p2align 3
.L4:
movupd xmm0, XMMWORD PTR [r... |
skirrithan/riscv-emu-ass | 2,326 | assembler-cpp/tests/data/comprehensive.s | # tests/data/comprehensive_min.s
# Round-trip coverage for: ADD, SUB, ADDI, LW, SW, BEQ, LUI, AUIPC, JAL, JALR
# No assembler directives (.section/.globl/.balign) so your parser won't complain.
_start:
# R-type
ADD x5, x6, x7 # expect 0x007302b3
SUB x5, x6, x7 # expect 0x407302b3
... |
snalvc/mash_dsm | 1,196 | rp2040/mash_dsm.s | .cpu cortex-m0
.syntax unified
.thumb
.thumb_func
.global mash3
.section .text
mash3:
movs r0, #0 @ Initialize s[0] = 0
movs r1, #0 @ Initialize s[1] = 0
movs r2, #0 @ Initialize s[2] = 0
movs r3, #0 @ Initialize f[0] = 0
movs r4, #0 @ Initialize f[1] = 0
... |
soarbear/stm32f446-ihm07m1 | 24,585 | f446-ihm07-a2208/STM32CubeIDE/Application/Startup/startup_stm32f446retx.s | /**
******************************************************************************
* @file startup_stm32f446xx.s
* @author MCD Application Team
* @brief STM32F446xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 22,700 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f405xx.s | /**
******************************************************************************
* @file startup_stm32f405xx.s
* @author MCD Application Team
* @brief STM32F405xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 19,242 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f410cx.s | /**
******************************************************************************
* @file startup_stm32f410cx.s
* @author MCD Application Team
* @brief STM32F410Cx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,372 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f437xx.s | /**
******************************************************************************
* @file startup_stm32f437xx.s
* @author MCD Application Team
* @brief STM32F437xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,541 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f439xx.s | /**
******************************************************************************
* @file startup_stm32f439xx.s
* @author MCD Application Team
* @brief STM32F439xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 21,345 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f412rx.s | /**
******************************************************************************
* @file startup_stm32f412rx.s
* @author MCD Application Team
* @brief STM32F412Rx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 23,060 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f417xx.s | /**
******************************************************************************
* @file startup_stm32f417xx.s
* @author MCD Application Team
* @brief STM32F417xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,885 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f479xx.s | /**
******************************************************************************
* @file startup_stm32f479xx.s
* @author MCD Application Team
* @brief STM32F479xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,585 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f446xx.s | /**
******************************************************************************
* @file startup_stm32f446xx.s
* @author MCD Application Team
* @brief STM32F446xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 21,345 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f412zx.s | /**
******************************************************************************
* @file startup_stm32f412zx.s
* @author MCD Application Team
* @brief STM32F412Zx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 23,356 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f423xx.s | /**
******************************************************************************
* @file startup_stm32f413xx.s
* @author MCD Application Team
* @brief STM32F413xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 20,322 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f401xc.s | /**
******************************************************************************
* @file startup_stm32f401xc.s
* @author MCD Application Team
* @brief STM32F401xCxx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 20,260 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f401xe.s | /**
******************************************************************************
* @file startup_stm32f401xe.s
* @author MCD Application Team
* @brief STM32F401xExx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,218 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f427xx.s | /**
******************************************************************************
* @file startup_stm32f427xx.s
* @author MCD Application Team
* @brief STM32F427xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 22,797 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f415xx.s | /**
******************************************************************************
* @file startup_stm32f415xx.s
* @author MCD Application Team
* @brief STM32F415xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 21,345 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f412vx.s | /**
******************************************************************************
* @file startup_stm32f412vx.s
* @author MCD Application Team
* @brief STM32F412Vx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,433 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f429xx.s | /**
******************************************************************************
* @file startup_stm32f429xx.s
* @author MCD Application Team
* @brief STM32F429xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 23,032 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s | /**
******************************************************************************
* @file startup_stm32f407xx.s
* @author MCD Application Team
* @brief STM32F407xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 23,281 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f413xx.s | /**
******************************************************************************
* @file startup_stm32f413xx.s
* @author MCD Application Team
* @brief STM32F413xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 20,436 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f411xe.s | /**
******************************************************************************
* @file startup_stm32f411xe.s
* @author MCD Application Team
* @brief STM32F411xExx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 21,261 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f412cx.s | /**
******************************************************************************
* @file startup_stm32f412Cx.s
* @author MCD Application Team
* @brief STM32F412Cx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 24,793 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f469xx.s | /**
******************************************************************************
* @file startup_stm32f469xx.s
* @author MCD Application Team
* @brief STM32F469xx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 19,007 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f410tx.s | /**
******************************************************************************
* @file startup_stm32f410tx.s
* @author MCD Application Team
* @brief STM32F410Tx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 19,242 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f410rx.s | /**
******************************************************************************
* @file startup_stm32f410rx.s
* @author MCD Application Team
* @brief STM32F410Rx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
soarbear/stm32f446-ihm07m1 | 28,124 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f405xx.s | ;*******************************************************************************
;* File Name : startup_stm32f405xx.s
;* Author : MCD Application Team
;* Description : STM32F405xx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,582 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410cx.s | ;*******************************************************************************
;* File Name : startup_stm32f410cx.s
;* Author : MCD Application Team
;* Description : STM32F410Cx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 29,733 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f437xx.s | ;*******************************************************************************
;* File Name : startup_stm32f437xx.s
;* Author : MCD Application Team
;* Description : STM32F437x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 29,916 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f439xx.s | ;*******************************************************************************
;* File Name : startup_stm32f439xx.s
;* Author : MCD Application Team
;* Description : STM32F439x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 19,825 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412rx.s | ;*******************************************************************************
;* File Name : startup_stm32f412rx.s
;* Author : MCD Application Team
;* Description : STM32F412Rx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 28,466 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f417xx.s | ;*******************************************************************************
;* File Name : startup_stm32f417xx.s
;* Author : MCD Application Team
;* Description : STM32F417xx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 30,188 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f479xx.s | ;*******************************************************************************
;* File Name : startup_stm32f479xx.s
;* Author : MCD Application Team
;* Description : STM32F479x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 29,848 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f446xx.s | ;*******************************************************************************
;* File Name : startup_stm32f446xx.s
;* Author : MCD Application Team
;* Description : STM32F446x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 19,825 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412zx.s | ;*******************************************************************************
;* File Name : startup_stm32f412zx.s
;* Author : MCD Application Team
;* Description : STM32F412Zx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,701 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f423xx.s | ;*******************************************************************************
;* File Name : startup_stm32f423xx.s
;* Author : MCD Application Team
;* Description : STM32F423xx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 24,793 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f401xc.s | ;*******************************************************************************
;* File Name : startup_stm32f401xc.s
;* Author : MCD Application Team
;* Description : STM32F401xc devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 24,789 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f401xe.s | ;*******************************************************************************
;* File Name : startup_stm32f401xe.s
;* Author : MCD Application Team
;* Description : STM32F401xe devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 29,729 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f427xx.s | ;*******************************************************************************
;* File Name : startup_stm32f427xx.s
;* Author : MCD Application Team
;* Description : STM32F427x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 28,100 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f415xx.s | ;*******************************************************************************
;* File Name : startup_stm32f415xx.s
;* Author : MCD Application Team
;* Description : STM32F415xx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 19,825 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412vx.s | ;*******************************************************************************
;* File Name : startup_stm32f412vx.s
;* Author : MCD Application Team
;* Description : STM32F412Vx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 30,028 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f429xx.s | ;*******************************************************************************
;* File Name : startup_stm32f429xx.s
;* Author : MCD Application Team
;* Description : STM32F429x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 28,586 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f407xx.s | ;*******************************************************************************
;* File Name : startup_stm32f407xx.s
;* Author : MCD Application Team
;* Description : STM32F407xx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,626 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f413xx.s | ;*******************************************************************************
;* File Name : startup_stm32f413xx.s
;* Author : MCD Application Team
;* Description : STM32F413xx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 24,914 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f411xe.s | ;*******************************************************************************
;* File Name : startup_stm32f411xe.s
;* Author : MCD Application Team
;* Description : STM32F411xExx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 19,661 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412cx.s | ;*******************************************************************************
;* File Name : startup_stm32f412cx.s
;* Author : MCD Application Team
;* Description : STM32F412Cx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 30,118 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f469xx.s | ;*******************************************************************************
;* File Name : startup_stm32f469xx.s
;* Author : MCD Application Team
;* Description : STM32F469x devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,347 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410tx.s | ;*******************************************************************************
;* File Name : startup_stm32f410tx.s
;* Author : MCD Application Team
;* Description : STM32F410Tx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,582 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410rx.s | ;*******************************************************************************
;* File Name : startup_stm32f410rx.s
;* Author : MCD Application Team
;* Description : STM32F410Rx devices vector table for MDK-ARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 20,629 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f405xx.s | ;********************************************************************************
;* File Name : startup_stm32f405xx.s
;* Author : MCD Application Team
;* Description : STM32F405xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,967 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f410cx.s | ;********************************************************************************
;* File Name : startup_stm32f410cx.s
;* Author : MCD Application Team
;* Description : STM32F410Cx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 22,527 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f437xx.s | ;********************************************************************************
;* File Name : startup_stm32f437xx.s
;* Author : MCD Application Team
;* Description : STM32F437xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 22,773 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f439xx.s | ;********************************************************************************
;* File Name : startup_stm32f439xx.s
;* Author : MCD Application Team
;* Description : STM32F439xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,489 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f412rx.s | ;********************************************************************************
;* File Name : startup_stm32f412rx.s
;* Author : MCD Application Team
;* Description : STM32F412Rx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,147 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f417xx.s | ;********************************************************************************
;* File Name : startup_stm32f417xx.s
;* Author : MCD Application Team
;* Description : STM32F417xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 26,369 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f479xx.s | ;********************************************************************************
;* File Name : startup_stm32f479xx.s
;* Author : MCD Application Team
;* Description : STM32F479xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 25,744 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f446xx.s | ;********************************************************************************
;* File Name : startup_stm32f446xx.s
;* Author : MCD Application Team
;* Description : STM32F446xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,488 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f412zx.s | ;********************************************************************************
;* File Name : startup_stm32f412zx.s
;* Author : MCD Application Team
;* Description : STM32F412Zx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 24,217 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f423xx.s | ;********************************************************************************
;* File Name : startup_stm32f423xx.s
;* Author : MCD Application Team
;* Description : STM32F423xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,720 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f401xc.s | ;********************************************************************************
;* File Name : startup_stm32f401xc.s
;* Author : MCD Application Team
;* Description : STM32F401xCxx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,722 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f401xe.s | ;********************************************************************************
;* File Name : startup_stm32f401xe.s
;* Author : MCD Application Team
;* Description : STM32F401xExx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 22,054 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f427xx.s | ;********************************************************************************
;* File Name : startup_stm32f427xx.s
;* Author : MCD Application Team
;* Description : STM32F427xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 20,751 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f415xx.s | ;********************************************************************************
;* File Name : startup_stm32f415xx.s
;* Author : MCD Application Team
;* Description : STM32F415xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,488 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f412vx.s | ;********************************************************************************
;* File Name : startup_stm32f412vx.s
;* Author : MCD Application Team
;* Description : STM32F412Vx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 22,665 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f429xx.s | ;********************************************************************************
;* File Name : startup_stm32f429xx.s
;* Author : MCD Application Team
;* Description : STM32F429xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,026 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f407xx.s | ;********************************************************************************
;* File Name : startup_stm32f407xx.s
;* Author : MCD Application Team
;* Description : STM32F407xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 24,099 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f413xx.s | ;********************************************************************************
;* File Name : startup_stm32f413xx.s
;* Author : MCD Application Team
;* Description : STM32F413xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,890 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f411xe.s | ;********************************************************************************
;* File Name : startup_stm32f411xe.s
;* Author : MCD Application Team
;* Description : STM32F411xExx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 21,233 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f412cx.s | ;********************************************************************************
;* File Name : startup_stm32f412cx.s
;* Author : MCD Application Team
;* Description : STM32F412Cx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 26,244 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f469xx.s | ;********************************************************************************
;* File Name : startup_stm32f469xx.s
;* Author : MCD Application Team
;* Description : STM32F469xx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,603 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f410tx.s | ;********************************************************************************
;* File Name : startup_stm32f410tx.s
;* Author : MCD Application Team
;* Description : STM32F410Tx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 17,967 | f446-ihm07-a2208/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/iar/startup_stm32f410rx.s | ;********************************************************************************
;* File Name : startup_stm32f410rx.s
;* Author : MCD Application Team
;* Description : STM32F410Rx devices vector table for EWARM toolchain.
;* This module performs:
;* ... |
soarbear/stm32f446-ihm07m1 | 5,360 | f446-ihm07-a2208/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal2.S | ;/* ----------------------------------------------------------------------
; * Project: CMSIS DSP Library
; * Title: arm_bitreversal2.S
; * Description: arm_bitreversal_32 function done in assembly for maximum speed.
; * Called after doing an fft to reorder the output.
; * The f... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.