Forum: Assembly Apr 9th, 2009 |
| Replies: 0 Views: 269 I am working on a embedded board with MIPS architecture and i have a requirement to initialize the 128MB RAM by writing zero's onto the memory. I have coded the following thing
// RAM... |
Forum: Java May 23rd, 2008 |
| Replies: 3 Views: 3,989 How about switching the focus from your JButton to JFrame which will do the trick
Just add this code before setting your JFrame visibility
setFocusable(true);
before your
setVisible(true);... |
Forum: Java May 23rd, 2008 |
| Replies: 0 Views: 337 Hi folks,
Today i noticed two strange behaviour in swing.
Case 1: Normally for every key events we used to get one keyPress and one keyRelease events.But this is not of the case with PrintScreen... |
Forum: Java Mar 12th, 2008 |
| Replies: 4 Views: 420 Can you provide some more detail where you have been struck up.
If you don't know how to start with creating thread then you can get a nice tutorial here... |
Forum: Java Dec 12th, 2007 |
| Replies: 5 Views: 2,892 Java specification tells that we cannot have static methods in interface.Can anyone explain me Why?
:-O |
Forum: Assembly Sep 10th, 2007 |
| Replies: 0 Views: 1,294 I need to read the BAR (Base Address Register) Length in PCI. How can i do that. I can able to find the Devices present in the PCI using the CF8 and CFC ports. But, how can i get length of the BAR... |