亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Free-RAM

  • This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end

    This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end of program execution it will display in the debug window if there were any memory leaks and how the memory looks so you can identify where your memory leak occurred. It will display in the debug window a message saying no memory leaks detected if there are no memory leaks. Similar to what crtdbg.h does in VC++. The code detects memory leaks generated with calls to new and delete operators in C++. The code doesn t detect memory leaks generated with C functions: malloc, calloc, free, but that can be done in the future. Let me know and I will program it.

    標(biāo)簽: the embedded detects almost

    上傳時(shí)間: 2015-05-07

    上傳用戶:comua

  • current version V0.2 功能:在LCD液晶屏上顯示相關(guān)信息

    current version V0.2 功能:在LCD液晶屏上顯示相關(guān)信息,可以從16個(gè)按鍵上接受信息。 代碼改為在Bank0-RAM執(zhí)行,免去做實(shí)驗(yàn)時(shí)的來回修改Boot1與Boot0的跳線, 修改之處:修改mem_b.scf(原為mem_bb.scf)中的81xx xxxx為 80xx xxxx, 修改連接ADS項(xiàng)目的連接選項(xiàng)中的Entry Point為 0x80000000 ZLGARM SmartARM2200 實(shí)驗(yàn)程序LCM_Disp修改版本 加入了4×4鍵盤驅(qū)動(ZLG7290)

    標(biāo)簽: current version 0.2 LCD

    上傳時(shí)間: 2014-01-02

    上傳用戶:cc1015285075

  • 44個(gè)vhdl實(shí)例 注1: 含有不可綜合語句

    44個(gè)vhdl實(shí)例 注1: 含有不可綜合語句,請自行修改 注2: 一些PLD只允許I/O口對外三態(tài),不支持內(nèi)部三態(tài),使用時(shí)要注意 注3: 設(shè)計(jì)RAM的最好方法是利用器件廠家提供的軟件自動生成RAM元件,并在VHDL程序中例化

    標(biāo)簽: vhdl

    上傳時(shí)間: 2013-11-29

    上傳用戶:liansi

  • 心愿音樂系統(tǒng)1.1 測試結(jié)果 采用風(fēng)聲無組件上傳

    心愿音樂系統(tǒng)1.1 測試結(jié)果 采用風(fēng)聲無組件上傳,可以上傳 2m以下的文件 這個(gè)可能跟網(wǎng)速有關(guān)系,我測試上傳4k/秒 有其他根好上傳組件和好的建議方法請跟我聯(lián)系 http://bbs.lt52.com/ qq:112934475 1內(nèi)核采用風(fēng)聲無組件上傳類 v2.0 2代碼容易維護(hù)采用Macromedia Dreamweaver MX軟件編寫 一 文件說明 conn.asp 連接數(shù)據(jù)庫,第一次使用修改數(shù)據(jù)庫名稱 index.asp 音樂系統(tǒng)首頁 player.asp 播放器支持 mp3/wma/asf/rm/ram的格式的播放 error.asp 錯(cuò)誤提示頁 息 pic文件夾 放網(wǎng)頁圖片資料 風(fēng)聲無組件上傳類 v2.0幾個(gè)重要文件 upload1.asp UpLoadClass.asp function.js UpLoadFile文件夾 上傳專用文件夾 數(shù)據(jù)庫 UpLoadClass.mdb 版本升級說明 2004-7.29(心愿音樂系統(tǒng)1.1) 添加 推薦歌曲 top歌曲 上傳歌曲 作者菜單導(dǎo)航! 2004-7-27 心愿音樂系統(tǒng) 歡迎大家來測試!1.0 http://bbs.lt52.com/ qq:112934475

    標(biāo)簽: 1.1 音樂系統(tǒng) 測試結(jié)果

    上傳時(shí)間: 2013-12-17

    上傳用戶:ynwbosss

  • 高精度實(shí)時(shí)時(shí)鐘-SD2001驅(qū)動程序,對sd2001時(shí)鐘進(jìn)行時(shí)實(shí)讀寫

    高精度實(shí)時(shí)時(shí)鐘-SD2001驅(qū)動程序,對sd2001時(shí)鐘進(jìn)行時(shí)實(shí)讀寫,并對其內(nèi)部的ram進(jìn)行操作

    標(biāo)簽: 2001 SD sd 高精度

    上傳時(shí)間: 2014-12-06

    上傳用戶:sxdtlqqjl

  • Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to w

    Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.

    標(biāo)簽: available libraries Although nearly

    上傳時(shí)間: 2014-01-22

    上傳用戶:zhoujunzhen

  • graspForth is my humble attempt at a Forth-in-C that has the following goals: GCC ......... to su

    graspForth is my humble attempt at a Forth-in-C that has the following goals: GCC ......... to support all 32-bit micros that GCC cross-compiles to. Relocatable . to be able to run in-place in either Flash or Ram. Fast ........ to be "not much" slower than an assembly based native Forth. Small ....... to fit-in approx 300 words in less than 25Kbytes on a 32-bit machine. Portable .... to achieve a 5 minute port to a new 32bit micro-processor, or micro-controller.

    標(biāo)簽: graspForth Forth-in-C following attempt

    上傳時(shí)間: 2015-05-23

    上傳用戶:tfyt

  • 一個(gè)keilc51的例子--飛機(jī)小游戲,游戲運(yùn)行在單片機(jī)里

    一個(gè)keilc51的例子--飛機(jī)小游戲,游戲運(yùn)行在單片機(jī)里,一塊51即可,無需任何外擴(kuò)的 RAM,只要51的串口和計(jì)算機(jī)連起來就可以玩了。計(jì)算機(jī)上運(yùn)行的程序是終端仿真程序,用來接收單片機(jī)發(fā)出的字符串并顯示出由字符組成的畫面和發(fā)出控制字符。

    標(biāo)簽: keilc 51 飛機(jī) 小游戲

    上傳時(shí)間: 2013-12-24

    上傳用戶:haoxiyizhong

  • 單片機(jī)為AT89S52

    單片機(jī)為AT89S52,功能為控制語音的錄放,存儲器用的是RAM,最大可錄3分鐘

    標(biāo)簽: 89S S52 AT 89

    上傳時(shí)間: 2014-01-21

    上傳用戶:csgcd001

  • 串口調(diào)試程序

    串口調(diào)試程序,本人第一次發(fā),呵呵,肯能給大家?guī)韼椭@個(gè)程序是我借助串口來調(diào)試外部RAM用的,希望能給大家?guī)韼椭?/p>

    標(biāo)簽: 串口調(diào)試 程序

    上傳時(shí)間: 2015-05-26

    上傳用戶:sammi

主站蜘蛛池模板: 长海县| 新龙县| 凤城市| 杭州市| 琼结县| 商南县| 耒阳市| 凤凰县| 尖扎县| 三明市| 当涂县| 石台县| 教育| 怀化市| 邵阳县| 浏阳市| 甘德县| 东山县| 丹东市| 昌邑市| 格尔木市| 巴楚县| 武鸣县| 大港区| 沈阳市| 寿光市| 沽源县| 南江县| 大渡口区| 忻州市| 沂水县| 汉沽区| 揭阳市| 卢氏县| 奉化市| 克东县| 广元市| 麻阳| 承德县| 营山县| 鄂州市|