-
CCS基础代码
MEMORY
{
PAGE 0:
VECS: org=0x0080, len=0x80
PROM: org=0x1000, len=0x1000 /* 4k words */
PAGE 1:
STACK: org=0x100, len=0x400 /* 1k words */
DARAM: org=0x2000, len=0x1000 /* 4k words */
}
SECTIONS
{ .text :> PROM PAGE 0
vectors :> VECS PAGE 0
.bss :> DARAM PAGE 1
.data :> DARAM PAGE 1
}
- 2022-07-18 04:00:20下载
- 积分:1
-
PE Explorer从可执行文件(PE)提取资源,同样的软件…
PE Explorer 从可执行文件(PE)中提取资源,像 ExeScope 一样的软件-PE Explorer from the executable file (PE) to extract resources, the same software as the ExeScope
- 2023-01-30 08:00:04下载
- 积分:1
-
查询HTTP站点:查询一个域名的存在,首选的HTTP,因为…
查询http站点:查询一个域是否存在时,首选http,因为许多站点有web页,本程序完成该功能-inquiries http site : query the existence of a domain, the preferred http, because there are many web site pages, the process of completing the functional
- 2022-12-02 01:00:04下载
- 积分:1
-
用C#写的报表程序,将数据库中的数据做成报表,并支持打印,数据库用SQL SERVER2000,供参考...
用C#写的报表程序,将数据库中的数据做成报表,并支持打印,数据库用SQL SERVER2000,供参考-written statements procedures, the data in the database made statements, and support print, database using SQL Server2000, for reference
- 2022-01-25 22:44:21下载
- 积分:1
-
智能电话系统的C语言代码,包括电子邮件功能模块,电话簿功能模块等多个模块。...
智能电话系统的C语言代码,包括电子邮件功能模块,电话簿功能模块等多个模块。-smart phone system in C language code and functional modules including e-mail, telephone directories and other functional modules module.
- 2022-07-04 22:20:26下载
- 积分:1
-
对DCT系数进行计算,使用一下
考虑到DCT变换中的系数要重复计算,可使用查找表来提高运行的效率,只要开始DCT变换之前计算一次,DCT变换中就可以只查找而无需计算系数。-to the DCT coefficients to be calculated, the use of look-up tables to improve operational efficiency, as long as the DCT started once before, on DCT can only search without calculation of the coefficient.
- 2023-06-22 00:15:04下载
- 积分:1
-
能够提取出指定网页中的所有链接。
并且显示连接是否可用。
能够提取出指定网页中的所有链接。
并且显示连接是否可用。-Able to extract all of the specified web page link. And shows the connection is available.
- 2022-06-18 17:20:45下载
- 积分:1
-
正则表达式,不错的好东西,有需要了解和学习的下载不吃亏
正则表达式,不错的好东西,有需要了解和学习的下载不吃亏-Regular expressions, good good things, there is a need to understand and learn the download does not suffer
- 2023-03-09 03:40:02下载
- 积分:1
-
HEX
HEX-VIEW是一个十六进制察看/编辑程序,虽然还不完善,但毕竟是一个可以运行的版本了,编写这个程序的目的是想深度探索处理过程。程序界面显示文件的每一个十六进制,ascii码,二进制和十进制字节。十六进制地显示在左侧,分十八列,对应的ascii码值显示在右侧。二进制和十进制值地显示可选。本程序用turbo c++3.1开发。用其它与dos兼容的编译器应该可以编译,但没有测试过。-HEX-VIEW is a hexadecimal probation/editor, while not perfect, but that is a running version, the preparation of this procedure is designed to explore the depth process. Program Interface documents show a 16 per band, ascii code, binary and decimal bytes. Hexadecimal displayed on the left side, 18 minutes, the corresponding code ascii value shown on the right. The binary and decimal value shows optional. The procedures used turbo c 3.1 development. In other dos compatible with the compiler can be compiled, but not tested.
- 2022-05-29 10:48:14下载
- 积分:1
-
Yet another one way to have only one copy of running application.
to use this...
Yet another one way to have only one copy of running application.
to use this add this unut as first to uses clause in dpr file and
program Nash
uses
UnInst in ..NashUnInst.pas ,
Forms,
...
begin
Application.Initialize
Application.Title := NASH-7.2
Application.CreateForm(TMainForm, MainForm)
Application.Run
end.
-Yet another one way to have only one copy of running application.
to use this add this unut as first to uses clause in dpr file and
program Nash
uses
UnInst in ..NashUnInst.pas ,
Forms,
...
begin
Application.Initialize
Application.Title := NASH-7.2
Application.CreateForm(TMainForm, MainForm)
Application.Run
end.
- 2022-08-15 10:28:57下载
- 积分:1