CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 汇编语言 搜索资源 - CALL

搜索资源列表

  1. matlab_ode45

    0下载:
  2. matlab运用ode45的简单调用解微分方程范例。-the use of a simple call to matlab ode45 paradigm for solving differential equations.
  3. 所属分类:assembly language

    • 发布日期:2017-03-25
    • 文件大小:240295
    • 提供者:Archer
  1. 14-1

    0下载:
  2. 调用一个函数,调用系统的时间,并且随系统时间自动更新-Call a function, call the system time and time automatically updated with the system
  3. 所属分类:assembly language

    • 发布日期:2017-04-08
    • 文件大小:669
    • 提供者:SU
  1. Example4_1

    0下载:
  2. Proe二次开发的部分源码,可以用在菜单函数调用的例子中,主要起到学习过程中的启发-Proe secondary development of the source code, you can use the menu function call examples, mainly inspired by the process of learning to play
  3. 所属分类:assembly language

    • 发布日期:2017-04-03
    • 文件大小:3479
    • 提供者:崔卫国
  1. zdxhuan.asm

    0下载:
  2. 机器调用,自动控制。转弯、黑线记数、搬运标志-Machine call, automatic control. Turn, the black line count, handling flag
  3. 所属分类:assembly language

    • 发布日期:2017-04-08
    • 文件大小:3161
    • 提供者:zgp
  1. 1-1

    0下载:
  2. 逆转顺序表的函数 主函数中定义了一个表mylist01。我们要调用l_def01.cpp中的相关函数对其进行 初始化, 插入10个元素, 然后打印表中各个元素的值, 接下来调用rev_list()函数来逆转之。 最后再次打印表中各个元素的值,以做比较-Reverse the order of the table function main function defines a table mylist01. We want to call l_def01.cpp
  3. 所属分类:assembly language

    • 发布日期:2017-03-26
    • 文件大小:827
    • 提供者:张敏
  1. cjh

    0下载:
  2. 微机实验,利用8255和8253实现对继电器的控制,调用延时子程序倒计时5秒。-Computer experiments, the use of 8255 and 8253 to achieve the relay control, call the delay subroutine countdown five seconds.
  3. 所属分类:assembly language

    • 发布日期:2017-04-13
    • 文件大小:1703
    • 提供者:chenmanxin
  1. CID

    0下载:
  2. 无线电话机来电显示实用源工程程序,汇编语言编写-call id source code
  3. 所属分类:assembly language

    • 发布日期:2017-04-07
    • 文件大小:3147
    • 提供者:pic
  1. chizhi

    0下载:
  2. 画出地貌地形图,熟悉各个matlab语句的掌握与运用,掌握运用插值函数的调用格式,对各种调用函数的格式语句要能够熟练的应用-Draw terrain map, master and use the MATLAB statement, master the use of interpolation function call forms, application format statement of a function call to be able to
  3. 所属分类:assembly language

    • 发布日期:2017-04-02
    • 文件大小:3913
    • 提供者:张子丽
  1. v86dos_src

    0下载:
  2. 很老的东西,1993年左右的书,书的作者吕晓庆,通过一个将DOS POST到保护模式的开发环境,对了解保护模式有点参考价值,个人感觉这本 书里边的东西学起来比较顺手.直道现在也几乎没有见到像这本书这样介绍保护模式系统的书. 这本书上的代码有点错误.运行不起来.1998年左右我修改了下,可以用了.可以用这个代码来实作,段,页,多任务,模式切换.CPU异常等处理. 而且里边还带个最简单崩溃的调试器的代码,出现异常时候可以将当前的i386 寄存器给打印出来, 目
  3. 所属分类:assembly language

    • 发布日期:2017-04-17
    • 文件大小:73256
    • 提供者:cjm
  1. videotopic

    0下载:
  2. VFP调用API来控件USB摄像头,实现拍照或录像。-VFP call the API to control USB camera, take pictures or video realization.
  3. 所属分类:assembly language

    • 发布日期:2017-04-04
    • 文件大小:395869
    • 提供者:林建平
  1. 5

    0下载:
  2. 北理工汇编 语言上机实验5 计算Z等于X的平方加Y的平方。计算平方时调用子程序PowerProc-North Polytechnic compilation computing machine experiment 5 Z equals X plus Y squared squared language. When calculating the square subroutine call PowerProc
  3. 所属分类:assembly language

    • 发布日期:2017-04-02
    • 文件大小:25279
    • 提供者:jeny zhang
  1. 3

    0下载:
  2. 汇编语言实现字符串的比较 在内存里可以看见过程 用dos调用运行出结果-Comparison of assembly language strings can be seen running in memory procedure call out the results with dos
  3. 所属分类:assembly language

    • 发布日期:2017-04-05
    • 文件大小:26188
    • 提供者:乌拉
  1. project1_3110103478

    0下载:
  2. 写一个名为”cleanup”的函数,它的输入参数有两个,第一个参数是一个普通单向链表(无头尾结点),第二个参数是一个整数。该函数的作用是清除链表中小于参数2的所有元素(等于的话是不清除的),然后返回链表的首个结点,不要创建新的存储空间,不能打乱元素的顺序。 链表中每个元素的大小为2 words,第一部分(First word)为数据域,记录数据;第二部分(Second word)为下个元素的地址。 空指针用0xFFFFFFFF表示,如果最后链表为空,则返回0xFFFFFFFF。 假设
  3. 所属分类:assembly language

    • 发布日期:2017-04-17
    • 文件大小:156727
    • 提供者:xdx
  1. project1_3110103478

    0下载:
  2. 写一个名为”cleanup”的函数,它的输入参数有两个,第一个参数是一个普通单向链表(无头尾结点),第二个参数是一个整数。该函数的作用是清除链表中小于参数2的所有元素(等于的话是不清除的),然后返回链表的首个结点,不要创建新的存储空间,不能打乱元素的顺序。 链表中每个元素的大小为2 words,第一部分(First word)为数据域,记录数据;第二部分(Second word)为下个元素的地址。 空指针用0xFFFFFFFF表示,如果最后链表为空,则返回0xFFFFFFFF。 假设
  3. 所属分类:assembly language

    • 发布日期:2017-04-27
    • 文件大小:77557
    • 提供者:xdx
  1. 3

    0下载:
  2. ,max函数出现在main函数之前,因此在main函数中调用max函数时,编译系统能识别max是已定义的函数名。 如果把两个函数的位置对换一下,即先写main函数,后写max函数,这时在编译main函数遇到max时,编译系统无法知道max代表什么含义,因而无法编译,按出错处理。 为了解决这个问题,在主函数中需要对被调用函数作声明-, Max function appears before the main function, so when you call max
  3. 所属分类:assembly language

    • 发布日期:2017-04-14
    • 文件大小:2942
    • 提供者:LJH
  1. liushuideng

    0下载:
  2. 调用库函数带参数子程序的程序设计控制流水灯-Call library functions with parameters subroutine design control water lights
  3. 所属分类:assembly language

    • 发布日期:2017-04-15
    • 文件大小:7446
    • 提供者:卢芷君
  1. TAPI_ASM

    0下载:
  2. 汇编语言的TAPI程序,功能为拨打和接起电话。-TAPI program of ASM, function call and picked up the phone.
  3. 所属分类:assembly language

    • 发布日期:2017-04-27
    • 文件大小:105003
    • 提供者:oulei
  1. matlabdianyuan

    0下载:
  2. 设置三个点源强度,并调用streamslice绘制流线-Set three-point source strength, and call streamslice draw flow lines
  3. 所属分类:assembly language

    • 发布日期:2017-04-25
    • 文件大小:27223
    • 提供者:李苗
  1. HTOB

    0下载:
  2. 十六进制与十进制转换,通过键盘输入调用字符,输出二进制-Hex and decimal conversion, call character, binary output via keyboard input
  3. 所属分类:assembly language

    • 发布日期:2017-04-26
    • 文件大小:102745
    • 提供者:cuixueying
  1. py_call_dll_by_NUnit

    0下载:
  2. 如何借助NUNit框架在Python中调用C#动态链接库文件dll,注意需要自己首先准备好NUnit工具。-A demo on how to call c# dynamic link lib dll file using python, NUnit is used here
  3. 所属分类:assembly language

    • 发布日期:2017-04-11
    • 文件大小:780
    • 提供者:dai
« 1 2 ... 5 6 7 8 9 1011 12 »
搜珍网 www.dssz.com