Sunday, January 21, 2007

Trends with homegrown EDA tools....


I was surprised to see this chart. Even though the chart is for year 2003-2004, I was holding the view that home-grown eda tools usage in design houses is declining. Apparently not.

A sad news for eda companies or a great news for potential growth coming in next few years...

It's painful to write one from scratch everytime... will update it later

(custom-set-variables
'(load-home-init-file t t))
(custom-set-faces)


(global-set-key '[f12] 'other-window)
(global-set-key '[f1] 'other-window)
(global-set-key '[f2] 'undo)
(global-set-key '[f3] 'compile)
(global-set-key '[f4] 'gdb)
(global-set-key '[f9] 'shell)

(setq c-mode-hook
(function (lambda ()
(setq indent-tabs-mode nil)
(setq c-indent-level 2))))
(setq objc-mode-hook
(function (lambda ()
(setq indent-tabs-mode nil)
(setq c-indent-level 2))))
(setq c++-mode-hook
(function (lambda ()
(setq indent-tabs-mode nil)
(setq c-indent-level 2))))


(setq inhibit-startup-message t)
(setq require-final-newline t)
(setq display-time-day-and-date t)
(auto-show-make-point-visible)
(setq search-highlight t)
(setq next-line-add-newlines nil)
(setq indent-tabs-mode nil)
(setq default-tab-width 2)
(setq bell-volume 0)