代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="matrix"
ProjectDir="F:\0503237\0503237\matrix\"
ProjectType=Executable
CPUFamily=TM
matrix.map
******************************************************************************
TMS320C54x COFF Linker PC Version 3.70
******************************************************
matrix.asm
.title "matrix.asm"
.mmregs
STACK .usect "STACK",10h
.bss x,16
.bss z,16
y .usect "y",16
.def _c_int00
.data
table1:
.word 1,2,3,
matrix.cmd
matrix.obj
-o matrix.out
-m matrix.map
MEMORY
{
PAGE 0 : EPROM :org=0100h,len=0200h
PAGE 1 : DARAM :org=0100h,len=0100h
}
SECTIONS
{
.text :> EPROM PAGE 0
.data :> EPROM PAGE 0
.bs
matrix.asm
comment ~
Copyright (C) 2008 Rouslan Dimitrov
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
matrix.c
#include"stdio.h"
void plus(float a[30][30],float b[30][30],int m,int n)
{ float c[30][30]={0};
int i,j;
for(i=0;i
matrix.h
// Matrix.h: interface and implementation of the CMatrix class.
//
/////////////////////////////////////////////////////////////////////////////////
#include
#define SQR(a) ( (a) == 0. ?
matrix.h
// Matrix.h: interface and implementation of the CMatrix class.
//
/////////////////////////////////////////////////////////////////////////////////
#include
#define SQR(a) ( (a) == 0. ?