Statemachine

G

gauchosuizo

Guest
hai

ada yang bisa menjelaskan padaku bagaimana bekerja statemachine?Mungkin sebuah contoh?

Terima kasih dan aloha

Pablo

CCS, PIC18F252, WXP, MPLAB, ICD2

 
Hai,

Berikut adalah beberapa link ke Mailey dan Moore ke mesin negara terbatas:

h ** p: / / www.cs.umd.edu/class/spring2003/cmsc311/Notes/Seq/fsm.html
h ** p: / / www.cs.umd.edu/class/spring2003/cmsc311/Notes/Seq/impl.html

atau perangkat lunak contoh:

h ** p: / / www.conman.org / projects / esai / Serikat

* = T

 
Mesin negara di Verilog
-------------------------------------------------- --
selalu @ (posedge CLK)
mulai
STATE0 = next_STATE0;
STATE1 = next_STATE1;
STATE2 = next_STATE2;
STATE3 = next_STATE3;
STATE4 = next_STATE4;
akhir

selalu @ (RESET atau STATE0 atau STATE1 atau STATE2 atau STATE3 atau STATE4)
mulai

if (STATE4 | RESET) next_STATE0 = 1;
lain next_STATE0 = 0;

if (~ RESET & STATE0) next_STATE1 = 1;
lain next_STATE1 = 0;

if (~ RESET & STATE1) next_STATE2 = 1;
lain next_STATE2 = 0;

if (~ RESET & STATE2) next_STATE3 = 1;
lain next_STATE3 = 0;

if (~ RESET & STATE3) next_STATE4 = 1;
lain next_STATE4 = 0;
akhir

 
memeriksa dasar-dasar Digital Design dan StateMachine Implememtation di:
www.deeps.org

 
EDA Anda dapat mencari buku-buku tentang desain digital EDA ebooks upload / download link atau General Interest Ebook ...tautan.
Saya sarankan Digital Design oleh John Wakely: ftopic85637.html

 
Finite State Machine untuk referensi Anda.

<img src="http://www.edaboard.com/images/smiles/icon_wink.gif" alt="Wink" border="0" /><img src="http://www.edaboard.com/images/smiles/icon_mad.gif" alt="Gila" border="0" /><img src="http://www.edaboard.com/images/smiles/icon_lol.gif" alt="Laughing" border="0" /><img src="http://www.edaboard.com/images/smiles/icon_sad.gif" alt="Sedih" border="0" /><img src="http://www.edaboard.com/images/smiles/icon_redface.gif" alt="Embarassed" border="0" />Maaf, tapi Anda harus login untuk melihat lampiran

 
M mencari Software Yang menciptakan Rangkaian untuk Negara Sequential Machine

Software ny bagus untuk itu?

 

Welcome to EDABoard.com

Sponsor

Back
Top