repo_id stringlengths 5 115 | size int64 590 5.01M | file_path stringlengths 4 212 | content stringlengths 590 5.01M |
|---|---|---|---|
96flashbacks/96flashbacks | 2,524 | lib/asm/llmuldiv_gcc.s | # assembler directives
.set noat # allow manual use of $at
.set noreorder # don't insert nops after branches
.set gp=64
.include "macros.inc"
.section .text, "ax"
/* -------------------------------------------------------------------------------------- */
/* need to asm these functions because lib32gcc-7-dev-m... |
96flashbacks/96flashbacks | 1,153 | lib/asm/osMapTLB.s | .set noreorder # don't insert nops after branches
.set gp=64
.include "macros.inc"
.section .text, "ax"
# This file is handwritten
#void osMapTLB(s32 index, OSPageMask pm, void *vaddr, u32 evenpaddr, u32 oddpaddr, s32 asid);
glabel osMapTLB
mfc0 $t0, $10
mtc0 $a0, $0
mtc0 $a1, $5
lw $t1, 0x14... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_led_and_delay/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
96flashbacks/springroll | 2,242 | lib/asm/bzero.s | .set noreorder // don't insert nops after branches
#include "macros.inc"
// this file is probably handwritten
//TODO There seem to be patterns in these iQue diffs. Can we figure out what's causing them? Could this have been written in C? See also bcopy.s.
.section .text, "ax"
glabel bzero
#ifdef VERSION_CN
ne... |
96flashbacks/springroll | 25,700 | lib/asm/__osExceptionPreamble.s | .set noat // allow manual use of $at
.set noreorder // don't insert nops after branches
#include "macros.inc"
#include <PR/R4300.h>
#include <PR/rcp.h>
#include <PR/ique.h>
#if defined(VERSION_EU) || defined(VERSION_SH)
#define VERSION_EU_SH
#endif
#if defined(VERSION_EU) || defined(VERSION_SH) || defined(VERS... |
96flashbacks/springroll | 8,318 | lib/asm/bcopy.s | .set noat // allow manual use of $at
.set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
//TODO There seem to be patterns in these iQue diffs. Can we figure out what's causing them? Could this have been written in C?
//also ifdef hell lol
glabel bcopy
beqz $a2, .... |
96flashbacks/springroll | 1,329 | lib/asm/__osSetCompare.s | .set noat
.set noreorder // don't insert nops after branches
#include "macros.inc"
#include <PR/R4300.h>
.section .text, "ax"
#ifdef VERSION_CN
glabel __osSetCompare
addiu $sp, $sp, -0x38
sd $ra, 0x30($sp)
sd $fp, 0x28($sp)
move $fp, $sp
sw $a0, 0x3c($fp)
lw $v0, 0x3c($fp)
... |
96flashbacks/springroll | 1,240 | lib/asm/osInvalDCache.s | .set noat // allow manual use of $at
.set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
glabel osInvalDCache
blez $a1, .L80323500
nop
li $t3, 8192
sltu $at, $a1, $t3
beqz $at, .L80323508
nop
move $t0, $a0
addu $t1, $a0, $a1
... |
96flashbacks/springroll | 1,959 | lib/asm/osGetCount.s | .set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
#ifdef VERSION_CN
glabel osGetCount
addiu $sp, $sp, -0x38
sd $ra, 0x30($sp)
sd $fp, 0x28($sp)
jal __osDisableInt
move $fp, $sp
sw $v0, 0x24($fp)
mfc0 $a1, $9
sw $a1, 0x20($f... |
96flashbacks/springroll | 1,125 | lib/asm/guScale.s | .set noat
.set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
#ifdef VERSION_CN
.balign 32
glabel guScale
li $at, 0x47800000 // 65536.000000
mtc1 $at, $f4
mtc1 $a1, $f6
mul.s $f8, $f6, $f4
trunc.w.s $f10, $f8
mfc1 $t1, $f10
srl $t2, $t1... |
96flashbacks/springroll | 2,835 | lib/asm/osSetIntMask.s | .set noat // allow manual use of $at
.set noreorder // don't insert nops after branches
#include "macros.inc"
#include <PR/R4300.h>
#include <PR/rcp.h>
#include <PR/os.h>
.section .text, "ax"
glabel osSetIntMask
#if defined(VERSION_EU) || defined(VERSION_SH) || defined(VERSION_CN)
mfc0 $t4, $12
andi ... |
96flashbacks/springroll | 1,088 | lib/asm/__osProbeTLB.s | .set noat // allow manual use of $at
.set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
glabel __osProbeTLB
mfc0 $t0, $10
andi $t1, $t0, 0xff
li $at, 0xFFFFE000
and $t2, $a0, $at
or $t1, $t1, $t2
mtc0 $t1, $10
nop
nop
nop... |
96flashbacks/springroll | 1,420 | lib/asm/guTranslate.s | .set noat
.set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
#ifdef VERSION_CN
.balign 16
glabel guTranslate
li $at, 0x47800000 // 65536.000000
mtc1 $at, $f4
mtc1 $a1, $f6
mul.s $f8, $f6, $f4
trunc.w.s $f10, $f8
mfc1 $t1, $f10
mtc1 $a2,... |
96flashbacks/springroll | 2,544 | lib/asm/llmuldiv_gcc.s | // assembler directives
.set noat // allow manual use of $at
.set noreorder // don't insert nops after branches
#include "macros.inc"
#ifndef VERSION_CN
.section .text, "ax"
/* -------------------------------------------------------------------------------------- */
/* need to asm these functions because lib3... |
96flashbacks/springroll | 1,146 | lib/asm/osMapTLB.s | .set noreorder // don't insert nops after branches
#include "macros.inc"
.section .text, "ax"
// This file is handwritten
// void osMapTLB(s32 index, OSPageMask pm, void *vaddr, u32 evenpaddr, u32 oddpaddr, s32 asid);
glabel osMapTLB
mfc0 $t0, $10
mtc0 $a0, $0
mtc0 $a1, $5
lw $t1, 0x14($sp) #... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_ds18b20/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_i2c_soft_bmp280/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_spi_hard_dma_ssd1306/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
96flashbacks/96flashbacks | 152,035 | sound/sequences/00_sound_player.s | .include "seq_macros.inc"
.section .rodata
.align 0
sequence_start:
seq_setmutebhv 0x60
seq_setmutescale 0
seq_setvol 127
seq_settempo 120
seq_initchannels 0x3ff
seq_startchannel 0, .channel0
seq_startchannel 1, .channel1
seq_startchannel 2, .channel2
seq_startchannel 3, .channel38
seq_startchannel 4, .channel4
seq_st... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_tb6612/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
96flashbacks/96flashbacks | 48,463 | asm/non_matchings/seq_channel_layer_process_script_jp.s | .late_rodata
glabel jtbl_80337C90
.word L8031B2C0
.word L8031B27C
.word L8031B690
.word L8031B690
.word L8031B30C
.word L8031B220
.word L8031B690
.word L8031B690
.word L8031B1E4
glabel jtbl_80337CB4
.word L8031B350
.word L8031B3A8
.word L8031B444
.word L8031B3D4
... |
96flashbacks/96flashbacks | 38,488 | asm/non_matchings/sequence_channel_process_script_jp.s | .late_rodata
.late_rodata_alignment 8
glabel jtbl_80337D08 # US: 80338EC0
.word L8031C430
.word L8031C3DC
.word L8031C44C
.word L8031C45C
.word L8031C3F8
.word L8031C6C8
.word L8031C724
.word L8031C75C
.word L8031C75C
.word L8031C7A8
.word L8031C7B8
.word L8031C75C
.w... |
96flashbacks/96flashbacks | 16,105 | asm/non_matchings/process_level_music_dynamics.s | .late_rodata
glabel jtbl_80338418
.word L8031FBAC
.word L8031FBEC
.word L8031FC2C
.word L8031FC6C
.word L8031FCAC
.word L8031FCEC
.word L8031FD2C
.word L8031FD54
.text
glabel process_level_music_dynamics # US: 803208EC
/* 0DAA4C 8031FA4C 27BDFFA0 */ addiu $sp, $sp, -0x60
/* 0DAA50 8031... |
96flashbacks/96flashbacks | 46,792 | asm/non_matchings/seq_channel_layer_process_script_us.s | .late_rodata
glabel jtbl_80337C90
.word L8031C2DC
.word L8031C298
.word L8031C6A0
.word L8031C6A0
.word L8031C328
.word L8031C23C
.word L8031C6A0
.word L8031C6A0
.word L8031C200
glabel jtbl_80337CB4
.word L8031C36C
.word L8031C3BC
.word L8031C454
.word L8031C3E8
... |
96flashbacks/96flashbacks | 37,866 | asm/non_matchings/sequence_channel_process_script_us.s | .late_rodata
.late_rodata_alignment 8
glabel jtbl_80337D08 # US: 80338EC0
.word L_U_8031D3A8
.word L_U_8031D354
.word L_U_8031D3C4
.word L_U_8031D3D4
.word L_U_8031D370
.word L_U_8031D5E4
.word L_U_8031D640
.word L_U_8031D678
.word L_U_8031D678
.word L_U_8031D6C4
.word L_U_80... |
96flashbacks/96flashbacks | 42,312 | asm/non_matchings/eu/audio/sequence_channel_process_script.s | .data
.asciiz "Audio:Track :Call Macro Level Over Error!\n"
.balign 4
.asciiz "Audio:Track :Loops Macro Level Over Error!\n"
.balign 4
.asciiz "SUB:ERR:BANK %d NOT CACHED.\n"
.balign 4
.asciiz "SUB:ERR:BANK %d NOT CACHED.\n"
.balign 4
.asciiz "Audio:Track: CTBLCALL Macro Level Over E... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_adc/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
96flashbacks/springroll | 155,284 | sound/sequences/00_sound_player.s | #include "seq_macros.inc"
.section .rodata
.align 0
sequence_start:
seq_setmutebhv 0x60
seq_setmutescale 0
#if defined(VERSION_SH) || defined(VERSION_CN)
seq_setvol 100
#else
seq_setvol 127
#endif
seq_settempo 120
seq_initchannels 0x3ff
seq_startchannel 0, .channel0
seq_startchannel 1, .channel1
seq_startchannel ... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_timer_ic_sr04/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_i2c_soft_max30102/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
903257958/stm32_oop_driver | 13,352 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
903257958/stm32_oop_driver | 15,346 | stm32f103c8_drivers/stm32f103c8_timer_oc_pwm_rgb/firmware/cmsis/device/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
903257958/stm32_oop_driver | 12,458 | stm32f103c8_drivers/stm32f103c8_exti/firmware/cmsis/device/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
903257958/stm32_oop_driver | 12,079 | stm32f103c8_drivers/stm32f103c8_exti/firmware/cmsis/device/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
903257958/stm32_oop_driver | 13,758 | stm32f103c8_drivers/stm32f103c8_exti/firmware/cmsis/device/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
903257958/stm32_oop_driver | 15,398 | stm32f103c8_drivers/stm32f103c8_exti/firmware/cmsis/device/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
903257958/stm32_oop_driver | 15,145 | stm32f103c8_drivers/stm32f103c8_exti/firmware/cmsis/device/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
903257958/stm32_oop_driver | 15,597 | stm32f103c8_drivers/stm32f103c8_exti/firmware/cmsis/device/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.