Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...




Embedded Systems Interview Questions
Questions Answers Views Company eMail

What is the bhe signal?

1138

Define the process of an interrupt operation in the 8086?

1043

explain the various functional blocks of the 8085 microprocessor.

1015

Describe the aaa instruction with the help of an example?

1047

Define psp and its structure?

1112

What does the parity flag do?

1130

Explain the different modes of operations of the 8086?

1059

How to control and timing circuitry of the 8085.

1075

Define the jobs performed by the biu and eu in the 8086.

1292

What is 'daisy-chaining' in reference to the 8086?

1198

How many bit address bus does the 8085 use?

1069

Which interrupt in the 8086 has the highest priority?

1169

explain about externally initiated operations

1115

What are the different types of arithmetic operations that can be performed by the 8085 microprocessor?

1265

What are the boons and banes of having more general purpose registers in a microprocessor.

1244


Un-Answered Questions { Embedded Systems }

Can we use printf inside isr?

884


How to reduce function call overhead in arm based systems

855


This program is in verilog and need help to get it working correctly. This is the code i have so far. Please help. Simple testbench would be great. Thanks\ 'define vend_a_drink {D,dispense,collect} = {IDLE,2'b11}; module drink_machine(nickel_in, dime_in, quarter_in, collect, nickel_out, dime_out, dispense, reset, clk) ; parameter IDLE=0,FIVE=1,TEN=2,TWENTY_FIVE=3, FIFTEEN=4,THIRTY=5,TWENTY=6,OWE_DIME=7; input nickel_in, dime_in, quarter_in, reset, clk; output collect, nickel_out, dime_out, dispense; reg collect, nickel_out, dime_out, dispense; reg [2:0] D, Q; /* state */ // synopsys state_vector Q always @ ( nickel_in or dime_in or quarter_in or reset ) begin nickel_out = 0; dime_out = 0; dispense = 0; collect = 0; if ( reset ) D = IDLE; else begin D = Q; case ( Q ) IDLE: if (nickel_in) D = FIVE; else if (dime_in) D = TEN; else if (quarter_in) D = TWENTY_FIVE; FIVE: if(nickel_in) D = TEN; else if (dime_in) D = FIFTEEN; else if (quarter_in) D = THIRTY; TEN: if (nickel_in) D = FIFTEEN; else if (dime_in) D = TWENTY; else if (quarter_in) 'vend_a_drink; TWENTY_FIVE: if( nickel_in) D = THIRTY; else if (dime_in) 'vend_a_drink; else if (quarter_in) begin 'vend_a_drink; nickel_out = 1; dime_out = 1; end FIFTEEN: if (nickel_in) D = TWENTY; else if (dime_in) D = TWENTY_FIVE; else if (quarter_in) begin 'vend_a_drink; nickel_out = 1; end THIRTY: if (nickel_in) 'vend_a_drink; else if (dime_in) begin 'vend_a_drink; nickel_out = 1; end else if (quarter_in) begin 'vend_a_drink; dime_out = 1; D = OWE_DIME; end TWENTY: if (nickel_in) D = TWENTY_FIVE; else if (dime_in) D = THIRTY; else if (quarter_in) begin 'vend_a_drink; dime_out = 1; end OWE_DIME: begin dime_out = 1; D = IDLE; end endcase end end always @ (posedge clk ) begin Q = D; end endmodule

3447


What work have you done on full chip Clock and Power distribution? What process technology and budgets were used?

3311


Working of a 2-stage OPAMP?

3236


What's yagni? Is this list of questions an example?

865


Describe a finite state machine that will detect three consecutive coin tosses (of one coin) that results in heads.

2887


What are the data pins of microprocessors?

1269


What type of instruction is cpi ā€˜c’ and define the action it performs?

1197


What are the types of interrupts from type 0 to 4

1018


explain the difference between 8086 and 8088?

1231


As you know a vast majority of high performance embedded systems today use risc architecture why?

937


Explain the significance of watchdog timer in embedded systems?

937


What are the different design constraints occur in the synthesis phase?

1164


What is meant by a sandbox.

957