Peter D. Minns - Digital System Design using FSMs

Здесь есть возможность читать онлайн «Peter D. Minns - Digital System Design using FSMs» — ознакомительный отрывок электронной книги совершенно бесплатно, а после прочтения отрывка купить полную версию. В некоторых случаях можно слушать аудио, скачать через торрент в формате fb2 и присутствует краткое содержание. Жанр: unrecognised, на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале библиотеки ЛибКат.

Digital System Design using FSMs: краткое содержание, описание и аннотация

Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Digital System Design using FSMs»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.

This is a complete update of the author's earlier book, FSM-Based Digital Design using Verilog HDL (Wiley 2008). Whilst the essential foundation content remains, the book has been considerably refreshed to cover the design of Finite State Machines (FSM) in place of Microprocessors, using a novel form of State Machines based on Toggle Flip Flops (TFF) and Data Flip Flops (DFF). It follows a Linear Programmed Learning approach, enabling the reader to learn at their own pace, and to design their own FSM based systems.

Digital System Design using FSMs — читать онлайн ознакомительный отрывок

Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Digital System Design using FSMs», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Thanks are also extended to: Dr C. Burch – Logisim, IET Digital Library, Oxford Publishing Limited, and Sage Publishing, USA for their various permissions, and these are referred to in the relevant sections of the book.

Any errors are, of course, entirely the responsibility of the author.

About the Companion Website

This book is accompanied by a companion website

www.wiley.com/go/minns/digitalsystemdesign This website includes An Index for Logisim Circuits An Index for Verilog - фото 2

This website includes:

An Index for Logisim Circuits

An Index for Verilog Listings

Guide to Supplementary Resources

Verilog HDL

Logisim Files

Guide to Supplementary Resources The reader will be aware that this book is - фото 3

Guide to Supplementary Resources

The reader will be aware that this book is supported by working Logisim circuits and Verilog listings and these can be accessed via the Wiley website locator.

However in order to be able to access these Logisim and Verilog circuits/listings the reader needs to download two programs namely Logisim and SynaptiCAD Verilog HDL from the internet and install them on their computer (either PC or MAC) as explained in Appendix 2 of this book.

Each of the Logisim and Verilog HDL folders on the Wiley website has an individual index that shows the appropriate chapter/appendix reference locator to which they refer.

Once the appropriate software has been installed the reader will need to click onto either the .circ or .v files located in ‘Logisim Circuits for Web Folder’ or ‘Verilog Listings for Web Folder’ which they wish to access.

In both folders there is additional material and ideas that do not appear in this book but maybe of interest to the reader.

1 Introduction to Finite State Machines

This chapter (like all other chapters) is written in the form of a linear frame, programmed learning text. This is to help you learn the basic skills required to design clocked finite state machines (FMSs) so that you can develop your own designs based on traditional T flip‐flops and D flip‐flops. Later, other techniques will be introduced, such as ‘one hot’ and ‘asynchronous finite state machines’, but these will be developed along the same lines as the work covered in this chapter.

The text is organized into ‘frames’. Each frame follows on consecutively from the previous one, but at times you may be redirected to other frames, depending upon your response to the questions you are asked. Do not cheat, but follow the frames as indicated.

1.1 SOME NOTES ON STYLE

Bolddenotes questions for you to answerto check your understanding of the material, highlights important points, or indicates an aside when further ideas are presented.

Please read this chapter first, and attempt all the questions before moving on to the later chapters. Note that the book can be read as a textbook. The programmed aspect of the book makes it more suitable for individuals to read and learn in their own time.

Frame 1.1 What is a Finite State Machine?

A finite state machine (FSM) is a digital sequential circuit that can follow a number of predefined states under the control of one or more inputs. Each state is a stable entity that the machine can occupy. It can move from this state to another state under the control of an outside world input.

Figure 11 Block diagram of an FSMbased application In Figure 11 we see an - фото 4

Figure 1.1 Block diagram of an FSM‐based application.

In Figure 1.1, we see an FSM with three outside world inputs ( p , q , and the clock) and three outside world outputs ( X , Y , and Z ). Note some FSMs have a clock input; those that don’t belong to a type of FSM called ‘asynchronous FSM’. However, this chapter deals with the more usual synchronous FSM, which dohave a clock input. Only Chapter 4and Chapter 6will look at asynchronous FSM.

Synchronous FSM can move between states only if a clock pulse occurs.

Task: Draw a block diagram for an FSM with five inputs (x, y, z, t, and a clock) and with two outputs (P and Q).

When you have done this, turn to Frame 1.2 .

Frame 1.2

The FSM with five inputs ( x , y , z , t , and a clock) and two outputs ( P and Q) is shown in Figure 1.2.

If you did not get this answer, go back and re‐read Frame 1.1. Don’t worry about using a mixture of both upper‐ and lower‐case letters here; the only thing that matters is that the same letters are used.

Each state of the FSM needs to be identifiable. This is achieved by using a number of internal flip‐flops within the FSM block. An FSM with four states would require two flip‐flops since two flip‐flops can store 2 2= 4 state numbers.

Figure 12 Block diagram with five inputs and two outputs Each state has a - фото 5

Figure 1.2 Block diagram with five inputs and two outputs.

Each state has a unique state number, and states are usually assigned numbers, such as s0 (state 0), s1, s2, and s3 (for a four‐state example).

As you can see, the rule here is 2 number of flip‐flops.

So an FSM with 13 states would require 2 4flip‐flops (i.e. 15 states of which 13 are used in the FSM and states 14 and 15 remain unused.

How many flip‐flops would be required for an FSM using 34 states?

What would the state numbers be for this FSM?

When you have answered these questions, turn to Frame 1.3 .

Frame 1.3

The answer to the previous question is:

In general 2 4 16 states 2 5 32 states 2 6 64 states 2 7 128 states - фото 6

In general: 2 4= 16 states, 2 5= 32 states, 2 6= 64 states, 2 7= 128 states, and so on.

What would the state number be for this FSM?

Answer The unused states would be s34 through to s63 Note that the states - фото 7

Answer:

The unused states would be s34 through to s63.

Note that the states run through from s0 to sn−1, for n states.

As well as containing flip‐flops to uniquely define the individual states of the FSM, there is also combinational logic, which defines the outside world outputs. In addition, the outside world inputs connect to combinational logic, which supplies the flip‐flops’ inputs.

Please turn to Frame 1.4 .

Frame 1.4

Figure 1.3illustrates the internal architecture for a Mealy FSM.

Figure 13 Block diagram of a Mealy state machine structure Note the feed - фото 8

Figure 1.3 Block diagram of a Mealy state machine structure.

Читать дальше
Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Похожие книги на «Digital System Design using FSMs»

Представляем Вашему вниманию похожие книги на «Digital System Design using FSMs» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё непрочитанные произведения.


Отзывы о книге «Digital System Design using FSMs»

Обсуждение, отзывы о книге «Digital System Design using FSMs» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.

x