代码搜索结果
找到约 10,000 项符合
Assembly 的代码
assembly.o
XL
H 1 areas 5 global symbols
M assembly.s
A text size 4C flags 0
S _read_program_memory Def001C
S _write_page Def0000
S _write_lock_bits Def002A
S _enableRWW Def0036
S _fill_temp_buffer Def00
assembly.h
void write_page (unsigned int adr, unsigned char function);
void fill_temp_buffer (unsigned int data,unsigned int adr);
unsigned int read_program_memory (unsigned int adr,unsigned char cmd);
void w
assembly.lis
.text
;*********************************************************
; Place a 1 for the processor you w
assembly._s
.text
;*********************************************************
; Place a 1 for the processor you want use
;*********************************************************
MEGATYPE8 = 1
MEG
assembly.s
.text
;*********************************************************
; Place a 1 for the processor you want use
;*********************************************************
MEGATYPE8 = 1
MEG
assembly.o
XL
H 1 areas 5 global symbols
M assembly.s
A text size 4C flags 0
S _read_program_memory Def001C
S _write_page Def0000
S _write_lock_bits Def002A
S _enableRWW Def0036
S _fill_temp_buffer Def00
assembly.m
% Assemble element stiffness matrix
% matrix K.
function K = assembly(K,e,ke)
include_flags;
for loop1 = 1:nen*ndof
i = LM(loop1,e);
for loop2 = 1:nen*ndof
j = LM(loop2,e);
assembly.m
% assemble element matrices and vectors
function [K,f] = assembly(K,f,e,ke,fe)
include_flags;
for loop1 = 1:nen*ndof
i = LM(loop1,e);
f(i) = f(i) + fe(loop1); % assemble element ve
assembly.m
% assemble element matrices and vectors
function [K,f] = assembly(K,f,e,ke,fe)
include_flags;
for loop1 = 1:nen
i = LM(loop1,e);
f(i) = f(i) + fe(loop1); % assemble forces
for
assembly.m
% % assemble element stiffness matrix and nodal force vector
function [K,f] = assembly(K,f,e,ke,fe)
include_flags;
for loop1 = 1:nen*ndof
i = LM(loop1,e);
f(i) = f(i) + fe(loop1);