- 博客(2)
- 资源 (3)
- 问答 (3)
- 收藏
- 关注
原创 函数式语言学院派之haskell之一
module Manysort ( insSort ,quickSort ,selectionSort , mergeSort ) where --insSort insert :: (Ord a) => a ->[a] -> [a] insert x [] = [x] insert x (y:ys) | x | otherwise = y:(insert x y
2014-08-03 15:51:03
658
自制cpu 学校大作业
4人一组的大实验,做了半年,代码量也有点。
分成4部分
1 cpu内核 用vhdl写成
2 compiler 将ocaml翻成asm 我写的
3 asm 用python写的 我写的
4 simulator c写的
5 fpu 浮动小数计算和library
关于2,3有不明的可以联系我
总之,对如何从0撸出一个cpu来很有帮助
2015-04-28
TA创建的收藏夹 TA关注的收藏夹
TA关注的人