Comment On OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

This is the eleventh article in a twelve-part series that discusses the twelve finalists and their calculator submissions for the OMGWTF Programming Contest. The entries are being presented in the order submitted, and the winner will be announced on June 18, 2007. [expand full text]
« PrevPage 1Next »

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:07 • by Dave B (unregistered)
I am in awe, but for true wtfery he should have done it in wireworld '-)

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:12 • by d++
Boo! This is not a true WTF!

He should at the very least implement division using the other operations instead of the lame

float DoDiv(float op1, float op2, int *isErr)
{
*isErr = 0;
if(op2 == 0)
{
*isErr = 1;
}
return op1/op2;
}


Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:19 • by Annoying person (unregistered)
Not first!!!

Captcha: xevious - say what again???

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:19 • by SomeCoder (unregistered)
This submission is one of those that is cool to play around with. The concept of implementing a virtual circuit in code is really interesting.

It's practical applications though are none which makes this a WTF. At least it would if someone actually did this in the workplace.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:25 • by Domster
Finally, clever code. This is one of only two or three of the finalists that I consider actually took the aim of the competition to heart ("first and foremost, Clever and, if desired, Buggy").

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:40 • by whicker (unregistered)
I can kind of see emulators doing this sort of gate-level simulation. Especially when there's unintended ripple through all the combinatorial logic.

Really the other thing is that this is an ideal design where results only appear when they're ready.

I'd really like to have seen an outer Update( ) loop with a magic number of iterations needed to produce the output, and then somewhere have "accidentally" given it one less iteration.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:51 • by Sven (unregistered)
The biggest WTF is Windows Calculator itself: although it's a very powerful calculator with a very powerful infinite precision engine, it still doesn't have a sqrt button in the scientific view, a problem that has existed for God knows how many Windows versions, and still exists in Vista. :P

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:58 • by BradC
140399 in reply to 140398
Sven:
The biggest WTF is Windows Calculator itself: although it's a very powerful calculator with a very powerful infinite precision engine, it still doesn't have a sqrt button in the scientific view, a problem that has existed for God knows how many Windows versions, and still exists in Vista. :P

They must figure that if you are smart enough to use the scientific view, you are smart enough to know to click "x^y" and type in ".5" (or x^y, 2, 1/x, =)

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:58 • by Obviously Missing Something (unregistered)
No square root button? Hmm. Maybe a square root isn't the Inverse of x^2 after all then...

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 11:59 • by w00t (unregistered)
140401 in reply to 140398
Sven:
The biggest WTF is Windows Calculator itself: although it's a very powerful calculator with a very powerful infinite precision engine, it still doesn't have a sqrt button in the scientific view, a problem that has existed for God knows how many Windows versions, and still exists in Vista. :P


True dat. Also, i find it quite hard to predict what it will do when you press enter, but maybe that's just me.. I much prefer the google (or, in a pinch, excel) way of just entering an expression as a line..

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:01 • by Skizz (unregistered)
140402 in reply to 140398
Sven:
The biggest WTF is Windows Calculator itself: although it's a very powerful calculator with a very powerful infinite precision engine, it still doesn't have a sqrt button in the scientific view, a problem that has existed for God knows how many Windows versions, and still exists in Vista. :P

Have you tried Inv-X^2? (i@)

Skizz

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:02 • by BradC
(side note) Interesting article about improvements in Windows Calculator that nobody noticed:

http://blogs.msdn.com/oldnewthing/archive/2004/05/25/141253.aspx

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:08 • by sirhegel
140404 in reply to 140388
d++:
Boo! This is not a true WTF!

He should at the very least implement division using the other operations instead of the lame



Did you read the documentation in the ZIP file? Since it is a documented feature, I would not consider it being lame.

I am saddened by the fact that I never managed to get around to floating point calculations. As a result, the division function of the calculator does not utilize VICE

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:10 • by Welbog
140406 in reply to 140401
w00t:
Sven:
The biggest WTF is Windows Calculator itself: although it's a very powerful calculator with a very powerful infinite precision engine, it still doesn't have a sqrt button in the scientific view, a problem that has existed for God knows how many Windows versions, and still exists in Vista. :P


True dat. Also, i find it quite hard to predict what it will do when you press enter, but maybe that's just me.. I much prefer the google (or, in a pinch, excel) way of just entering an expression as a line..
That's why I ended up writing my math IRC bot. No matter where I am, I can log in and give it expressions to evaluate, and even define, store and retrieve variables from anywhere in the world! Context-free grammars FTW.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:19 • by guest (unregistered)
It's interesting that we didn't yet see any entry in the finals which is implemented for unix. Does it mean that they can't write wtfy code?

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:20 • by SomeCoder (unregistered)
140408 in reply to 140403
BradC:
(side note) Interesting article about improvements in Windows Calculator that nobody noticed:

http://blogs.msdn.com/oldnewthing/archive/2004/05/25/141253.aspx


I noticed. The real WTF is that they didn't write their own floating point software in the first place. If you're writing a calculator, the general public expects:
1.0 - .2 - .2 - .2 -.2 - .2 = 0

If you use IEEE, you will get (using C++)

0000000327826

It's water under the bridge now and Windows calc is a great program with great accuracy but anytime you're going to write a commercial calculator, you have to be aware of those things.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:29 • by Anonymus (unregistered)
The Real WTF is that he didn't take the time to implement a Virtual Wooden Table (VWT).

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:44 • by bob the slob (unregistered)
Performant isn't a word.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:56 • by d++
140414 in reply to 140404
sirhegel:
d++:
Boo! This is not a true WTF!

He should at the very least implement division using the other operations instead of the lame



Did you read the documentation in the ZIP file? Since it is a documented feature, I would not consider it being lame.

I am saddened by the fact that I never managed to get around to floating point calculations. As a result, the division function of the calculator does not utilize VICE


First, for those with browser that don't highlight <sarcasm> tags: this a great piece of software. So great that I do not find it a WTF.

As for the division, the classic "subtract till done" algorithm should be enough and more consistent with the premise.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:57 • by danfiru
Uhm... seriously... unit test? Thats a wtf for me.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 12:57 • by Thief^
140416 in reply to 140403
BradC:
(side note) Interesting article about improvements in Windows Calculator that nobody noticed:

http://blogs.msdn.com/oldnewthing/archive/2004/05/25/141253.aspx

From the comments on that page:
I would guess they just want a calculator that works the way they expect it to - the same way their handheld calculator (no I don't mean Palm) works.

Last time I checked handheld calculators only had 12 places of precision (and displayed 10). The example of 10.21-10.2 that throws Windows' Calc doesn't throw a handheld because it's BCD based, but handhelds still hate 1.0-1/3-1/3-1/3.

You can prove the precision thing by doing 1/3 - 0.333333333 (as many threes as you can fit on the display). The result is going to be 3.3e-10. It should be 3.333333333e-10, in fact if you keep subtracting what you see on-screen then you should never get to an end (1/3 being infinitely repeating and all), but you will likely only see a couple of digits beyond what was originally displayed.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:15 • by witfuck (unregistered)
140417 in reply to 140407
guest:
It's interesting that we didn't yet see any entry in the finals which is implemented for unix. Does it mean that they can't write wtfy code?


Did you fuckwit read the conditions of the contest? No self-respecting Unix programmer would join a contest under these conditons.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:28 • by Frenchier than thou (unregistered)
140418 in reply to 140412
bob the slob:
Performant isn't a word.

In French, it is.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:30 • by bobday
140419 in reply to 140412
bob the slob:
Performant isn't a word.

Shut up, baby. Don't spoil the moment for us.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:30 • by Look at me! I'm on the internets! (unregistered)
140420 in reply to 140398
Sven:
The biggest WTF is Windows Calculator itself: although it's a very powerful calculator with a very powerful infinite precision engine, it still doesn't have a sqrt button in the scientific view, a problem that has existed for God knows how many Windows versions, and still exists in Vista. :P


Try inv x^2

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:33 • by Hit (unregistered)
140421 in reply to 140417
witfuck:
guest:
It's interesting that we didn't yet see any entry in the finals which is implemented for unix. Does it mean that they can't write wtfy code?


Did you fuckwit read the conditions of the contest? No self-respecting Unix programmer would join a contest under these conditons.


Then I guess the 150 or so entries that were written for unix were just a mirage. Or are you saying that those programmers have no self respect?

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:46 • by Skybert
140423 in reply to 140407
guest:
It's interesting that we didn't yet see any entry in the finals which is implemented for unix. Does it mean that they can't write wtfy code?
No. It means you are blind. Or that you didn't read all the finalists. Everyone else saw #03: The estimator.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 13:54 • by whicker (unregistered)
140424 in reply to 140408
SomeCoder:
BradC:
(side note) Interesting article about improvements in Windows Calculator that nobody noticed:

http://blogs.msdn.com/oldnewthing/archive/2004/05/25/141253.aspx


I noticed. The real WTF is that they didn't write their own floating point software in the first place. If you're writing a calculator, the general public expects:
1.0 - .2 - .2 - .2 -.2 - .2 = 0

If you use IEEE, you will get (using C++)

0000000327826

It's water under the bridge now and Windows calc is a great program with great accuracy but anytime you're going to write a commercial calculator, you have to be aware of those things.

I agree with what you are saying, and would like to add something...

There is no reason why that subtraction sequence above should not be exactly zero. A normal user is not wrong just because IEEE 754 can't represent a perfectly normal decimal number exactly.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 14:30 • by AASoft (unregistered)
Notice the size of the archive:
66.6

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 14:41 • by Whiskey Tango Foxtrot? Over.
140433 in reply to 140388
d++:
Boo! This is not a true WTF!

He should at the very least implement division using the other operations instead of the lame [code snipped]


In my defense, I had *planned* to implement division, along with a whole lot more. Alas, I didn't have enough time. :(

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 14:43 • by Whiskey Tango Foxtrot? Over.
140434 in reply to 140430
AASoft:
Notice the size of the archive:
66.6


Does that mean I sold my soul to win the contest? I'm not sure my soul is worth a new laptop. :)

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 14:52 • by floort
Wy not use those shiny multycore cpu's?
Give each transistor it's own thread.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 15:57 • by dkf (unregistered)
140455 in reply to 140436
floort:
Wy not use those shiny multycore cpu's?
Give each transistor it's own thread.
I've done very close to that in production code. OK, they weren't real threads (I needed the ability to make them move backwards in time, and real threads are far too heavyweight) but even so, you can build some impressive circuits that way.

I doubt this entry will win. If the entrant had created a VHDL engine and entered something with a circuit implemented using that, it would be a different story. (VHDL for a contest like this would be highly WTF-rated in an Enterprisey way!)

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 18:34 • by Frost Cat (unregistered)
140487 in reply to 140417
witfuck:
guest:
It's interesting that we didn't yet see any entry in the finals which is implemented for unix. Does it mean that they can't write wtfy code?


Did you fuckwit read the conditions of the contest? No self-respecting Unix programmer would join a contest under these conditons.


HAhahaah, that's funny, and clearly you've never worked at any Unix site that does, in fact, create massive WTFs.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 19:50 • by chimaera
Not sure if this was exactly what we envisaged - but this is soooooo cool. you, er, da man

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-08 20:23 • by david (unregistered)
140496 in reply to 140399
or even [INV] [x^2] ...

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-09 07:37 • by Akerbos (unregistered)
Did anyone try PowerToy Calc by MS? Powerful thing.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-09 18:02 • by Erzengel
The pan-ultimate in NIH. The hardware wasn't invented here so we must create new hardware in software. Would be useful for unit testing your circuit boards before building them.
While reading it, I couldn't help but think about how it integrated into a game, and actually felt like I was looking at portions of some game code I've been privy to peruse.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-10 23:31 • by Purple Avenger (unregistered)
The old NanoData QM-1 machine could emulate hardware at a pretty low level...using code (a 2-level microcode scheme). It was vertically and horizontally microprogrammable at the user level and designed to be an emulation machine.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-11 04:37 • by DOA (unregistered)
I kinda liked this one. While obviously a wtf for a calculator it sounds like something you'd tinker with on your spare time just for the perverse fun of it

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-11 17:55 • by Arcaneous
LoL. It took someone pointing out this entry was from Nashville for me to notice who submitted it. I would have wished you GL Randolfo, but its already over. In case your wondering we used to work together.




Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-11 20:08 • by chrismcb
140673 in reply to 140412
bob the slob:
Performant isn't a word.


Uhm... Sure it is. Or are you implying that English is a stagnant language?

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-15 06:39 • by ChrisH (unregistered)


This is my winner. Very elegant and I really wish I'd thought if this myself.

Now I've expressed my professional judgment, clearly it's time to pick some really divisive geek issue to fuel a flame war, you know... just to make the day go by.

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2007-06-17 08:09 • by maht (unregistered)
141454 in reply to 140509
you windows weenies dont even know power

man bc

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2008-11-28 21:34 • by 855 (unregistered)
丽水货架
金华货架
衢州货架
余杭货架
萧山货架
临安货架
德清货架
平湖货架
海宁货架
桐乡货架
奉化货架
余姚货架
慈溪货架
诸暨货架
义乌货架
瑞安货架
永嘉货架
安徽货架
合肥货架
芜湖货架
马鞍山货架
铜陵货架
宣城货架
巢湖货架
山东货架
济南货架
轻型货架
轻型货架
中型货架
重型货架
悬臂货架
模具货架
阁楼货架
南京货架
镇江货架
苏州货架
扬州货架
徐州货架
南通货架
盐城货架
淮阴货架
连云港货架
常州货架
浙江货架
无锡货架
上海货架
杭州货架
湖州货架
嘉兴货架
宁波货架
台州货架
绍兴货架
衢州货架
温州货架
金华货架
萧山货架
海宁货架
临安货架
慈溪货架
余姚货架
建德货架
路桥货架
仓储笼
登高车
料箱
液压搬运车
堆垛车
平台车
塑料托盘
工作台
网片
南京网片
镇江网片
苏州网片
南通网片
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
小游戏
激情电影
美容BB霜免费赠送
英语天地
手机游戏下载

设计之家
美容时尚网
美食在线
<p>轻型货架
轻型货架
轻型货架
轻型货架
轻型货架
中型货架
中型货架
中型货架
中型货架
重型货架
重型货架
载物台车
堆垛货架
巧固架
货架
货架
货架
固定小推车
手推车
双层静音推车
铁板手推车
手动液压平台车
提升机
单叉手动液压平台车
双叉手动液压平台车
多层框架车
登高车H1000
塑料托盘
登高车H1400
铁屑车
南京货架
货架
仓储货架
货架公司
货架厂
角钢货架
轻型货架
货架
南京货架
中型货架
重型货架
贯通货架
通廊货架
模具货架
抽屉货架
移动式货架
密集货架
立体货架
阁楼货架
悬臂货架
滚轮式货架
整理架
托盘
钢托盘
塑料托盘
仓储笼
上海仓储笼
江西仓储笼
料箱
钢制料箱
物流台车
登高车
工具柜
浙江工具柜
工具车
安徽工具车
工作台
整理柜
手推车
静音手推车
铁板手推车
搬运车
手动托盘搬运车
液压手动堆垛机
液压手推平台车
圆桶搬运车/油桶搬运车
电动托盘搬运车
高空拣选车
电动/电瓶叉车
库房货架
货架设计
轻型货架
角钢货架
中型货架
中量型货架
重型货架
重量型货架
托盘货架
贯通货架
通廊式货架
阁楼货架
悬臂式货架
模具货架
抽屉货架
辊轮式货架
移动式货架
网片
护栏
隔离网
工具柜
安全工具柜
工具车
移动工具车
置物柜
整理架
挂板架
工作台
线棒货架
输送轨道
输送轨道机
输送带
不锈钢制品
仓储笼
折叠式仓储笼
可堆周转箱
钢托盘
托盘
钢制托盘
网格料箱
料箱
钢料箱
钢制料箱
物流台车
重型货架
镇江塑料托盘
扬州塑料托盘
无锡塑料托盘
塑料托盘
求购货架
轻型货架
中型货架
托盘货架
贯通货架
马鞍山仓储笼
宁波重型货架
杭州轻型货架
杭州中型货架
杭州重型货架
杭州悬臂架
杭州4S店货架
宁波轻型货架
宁波中型货架
盐城货架
南通货架
苏州货架
镇江货架
南京货架
工业货架
嘉兴货架
常州货架
北京货架
辽宁货架
广东货架
河北货架
山西货架
吉林货架
湖南货架
福建货架
天津货架
部队货架
上海货架
青田货架
义乌货架
瑞安货架
温岭货架
舟山货架
诸暨货架
上虞货架
慈溪货架
余姚货架
奉化货架
海宁货架
嘉善货架
平湖货架
临安货架
建德货架
萧山货架
衢州货架
余杭货架
金华货架
温州货架
台州货架
绍兴货架
宁波货架
嘉兴货架
湖州货架
杭州货架
浙江货架
芜湖货架
合肥货架
安徽货架
威海货架
青岛货架
济南货架
山东货架
洛阳货架
河南货架
西安货架
陕西货架
四川货架
武汉货架
湖北货架
句容货架
仪征货架
江都货架
太仓货架
昆山货架
吴江货架
江阴货架
张家港货架
常熟货架
金坛货架
丹阳货架
无锡货架
常州货架
连云港货架
淮阴货架
徐州货架
东台货架
盐城货架
扬州货架
南通货架
苏州货架
镇江货架
南京货架
阁楼货架
模具货架
悬臂货架
重型货架
中型货架
轻型货架
张家港货架
江阴货架
海安货架
金坛货架
巢湖货架
芜湖货架
马鞍山货架
合肥货架
安徽货架
温岭货架
阁楼货架
悬臂货架
模具货架
重型货架
路桥货架
东营货架
临安货架
义乌货架
铜陵货架
诸暨货架
慈溪货架
余姚货架
余杭货架
萧山货架
海宁货架
衢州货架
金华货架
温州货架
台州货架
绍兴货架
宁波货架
湖州货架
嘉兴货架
浙江货架
杭州货架
上海货架
无锡货架
常州货架
淮阴货架
连云港货架
徐州货架
盐城货架
扬州货架
苏州货架
镇江货架
上海货架
南京货架
苏州货架
中型货架
轻型货架
合肥货架
安徽货架
威海货架
青岛货架
济南货架
山东货架
洛阳货架
河南货架
西安货架
陕西货架
四川货架
武汉货架
湖北货架
句容货架
仪征货架
江都货架
昆山货架
太仓货架
吴江货架
江阴货架
无锡货架
轻型货架
重型货架
中型货架
悬臂货架
模具货架
阁楼货架
丹阳货架
金坛货架
常熟货架
常州货架
淮阴货架
盐城货架
徐州货架
扬州货架
南通货架
苏州货架
南京货架
东台货架
中型货架
重型货架
轻型货架
苏州货架
悬臂货架
中型货架
轻型货架
中型货架
萧山货架
阁楼货架
昆山货架
温州货架
浙江货架
常州货架
南京货架
轻型货架
重型货架
海宁货架
奉化货架
余姚货架
慈溪货架
上虞货架
诸暨货架
舟山货架
温岭货架
瑞安货架
义乌货架
青田货架
上海货架
轻型货架
中型货架
重型货架
悬臂货架
模具货架
阁楼货架
工业货架
求购货架
马鞍山货架
铜陵货架
宣城货架
巢湖货架
浙江货架
杭州货架
湖州货架
嘉兴货架
宁波货架
绍兴货架
台州货架
温州货架
金华货架
余杭货架
衢州货架
萧山货架
建德货架
临安货架
平湖货架
嘉善货架
吴江货架
江阴货架
昆山货架
太仓货架
仪征货架
句容货架
湖北货架
武汉货架
四川货架
陕西货架
西安货架
河南货架
洛阳货架
山东货架
济南货架
青岛货架
威海货架
安徽货架
合肥货架
芜湖货架
南京货架
镇江货架
苏州货架
南通货架
扬州货架
盐城货架
徐州货架
淮阴货架
连云港货架
常州货架
东台货架
丹阳货架
金坛货架
常熟货架
张家港货架
江阴货架
仓储笼
瑞安货架
义乌货架
青田货架
上海货架
温岭货架
诸暨货架
慈溪货架
余姚货架
奉化货架
海宁货架
嘉善货架
平湖货架
临安货架
建德货架
萧山货架
衢州货架
余杭货架
金华货架
温州货架
山东货架
洛阳货架
河南货架
西安货架
合肥货架
安徽货架
威海货架
青岛货架
济南货架
芜湖货架
马鞍山货架
宣城货架
铜陵货架
浙江货架
巢湖货架
湖州货架
杭州货架
嘉兴货架
绍兴货架
宁波货架
台州货架
中型货架
阁楼货架
模具货架
悬臂货架
重型货架
工业货架
无锡货架
南京货架
南通货架
苏州货架
镇江货架
扬州货架
盐城货架
连云港货架
淮阴货架
徐州货架
金坛货架
丹阳货架
常州货架
张家港货架
常熟货架
昆山货架
吴江货架
江阴货架
太仓货架
句容货架
仪征货架
江都货架
武汉货架
湖北货架
四川货架
台州货架
轻型货架
杭州货架
湖州货架
杭州货架
隔离网片
贯通式货架
模具货架
悬臂货架
重型货架
中型货架
轻型货架
重型货架
悬臂货架
悬臂货架
悬臂货架
模具货架
模具货架
模具货架
4S店货架
4S店货架
阁楼货架
仓储笼
料箱
登高车
塑料托盘
轻型货架
轻型货架
轻型货架
中型货架
中型货架
中型货架
中型货架
角钢货架
轻型货架
轻型货架
中型货架
中型货架
重型货架
重型货架
模具货架
模具货架
悬臂货架
悬臂货架
阁楼货架
阁楼货架
料箱
料箱
仓储笼
仓储笼
贯通货架
网片
丽水仓储笼
余杭仓储笼
金华仓储笼
温州仓储笼
台州仓储笼
绍兴仓储笼
宁波仓储笼
嘉兴仓储笼
湖州仓储笼
杭州仓储笼
常州仓储笼
连云港仓储笼
淮阴仓储笼
徐州仓储笼
盐城仓储笼
扬州仓储笼
南通仓储笼
苏州仓储笼
镇江仓储笼
仓储笼
中型货架
中型货架
重型货架
重型货架
重型货架
重型货架
重型货架
模具货架
模具货架
模具货架
模具货架
模具货架
悬臂货架
悬臂货架
悬臂货架
悬臂货架
悬臂货架
阁楼货架
阁楼货架
阁楼货架
阁楼货架
轻型货架
中型货架
重型货架
海宁货架
常州料箱
连云港料箱
淮阴料箱
徐州料箱
盐城料箱
扬州料箱
南通钢制料箱
镇江料箱
南京料箱
无锡料箱
轻型货架
南通货架
轻型货架
重型货架
杭州货架
宁波货架
衢州货架
余姚货架
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
不锈钢管
小游戏
激情电影
美容BB霜免费赠送
英语天地
手机游戏下载

设计之家
美容时尚网
美食在线
<p>重型货架
无锡货架
苏州货架
中型货架
重型货架
模具货架
悬臂货架
中型货架
重型货架
江都货架
泰州货架
太仓货架
昆山货架
吴江货架
张家港货架
常熟货架
溧阳货架
金坛货架
扬中货架
丹阳货架
淮阴货架
无锡货架
常州货架
徐州货架
轻型货架
上海货架
马鞍山货架
蚌埠货架
安徽货架
仪征货架
常熟货架
常州货架
盐城货架
南通货架
镇江货架
江苏货架
下沙货架
临安货架
义乌货架
嘉善货架
余姚货架
衢州货架
金华货架
台州货架
宁波货架
嘉兴货架
杭州货架
浙江货架
杭州货架
湖州货架
嘉兴货架
宁波货架
绍兴货架
杭州货架
湖州货架
嘉兴货架
绍兴货架
台州货架
液压搬运车
登高车
合肥货架
句容货架
太仓货架
金坛货架
徐州货架
镇江货架
苏州货架
常州货架
张家港货架
江阴货架
连云港货架
常州货架
无锡货架
丹阳货架
扬中货架
金坛货架
常熟货架
张家港货架
江阴货架
昆山货架
仪征货架

Re: OMGWTF Finalist #11: VICE, Virtual Integrated Circuit Engine

2009-01-22 21:07 • by Me (unregistered)
If I understand correctly, this wouldn't be vulnerable to any e.g. FPU bugs?
« PrevPage 1Next »

Add Comment