Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Capitalist flight (Score 1) 1142

Although the nominal corporate tax rate is not that low, the actual (average) taxes paid by corporations is quite low compared to other developed countries because of the convoluted tax breaks written into the law.

Citation please. I'd like to see an example of a US company legally pay less than 20% on income of at least 10 million in profits.

I'll use Intel as an example, since they post excellent reports and are a large multinational corporation. http://www.intc.com/intelAR2008/financial/statements/note23/index.html Notice their effective rate of between 28% and 31%(make sure to read about the 24%). Amazing that the government gives them tax credits to do R&D and manufacturing locally. You'd think that they'd just lower the tax rate.

Is that low compared to other nations? This data says no: http://www.kpmg.com/SiteCollectionDocuments/Corporate-and-Indirect-Tax-Rate-Survey-2008v2.pdf The average rate in 2008 is 25.9%. In fact Intel's effective rate is higher than over 70% of other nations including the entire EU which has been lowering corporate taxes over the past decade.

Comment Re:Where are you located? (Score 1) 301

Learn Verilog. It's been a while since I've used VHDL but the following is why I would not consider using it again.
  • VHDL's strong typing will cause you hours of lost work because of silly things like the differences between std_logic_vector and unsigned. Others claim this is a feature as it prevents bugs due to type conversions. This should be a non-issue when using Verilog as your test suite should test everything. Plus decent simulators/synthesis tools have lint functions.
  • VHDL is far too verbose. It requires replicating the entity definition before instancing it. Now when you change ports(and large designs will require MANY port changes) you get to change them in 3 places instead of 2. In ASIC applications, netlist brevity becomes very important when gate-level fixes need to be made.
  • Many tools do not like VHDL. At least two that I know of require compiling libraries first. With Verilog you can usually just throw a bunch of files at them and the tool can elaborate the design. In ASIC development, you very well may use 5-6 tools other than the simulator and synthesis tool.
  • SystemVerilog is a train wreck, but is advancing Verilog adoption.

You may want to consider schematic entry if your design is simple enough. At the very least, look at the floorplan of your synthesized designs so you can how much logic it took for each module.

Slashdot Top Deals

1 + 1 = 3, for large values of 1.

Working...