Compare commits

...

4 Commits

8 changed files with 78 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 83 KiB

BIN
coursework/img/carno_Q1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
coursework/img/carno_Q2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
coursework/img/carno_Q3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
coursework/img/carno_y1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
coursework/img/carno_y2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
coursework/img/carno_y3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -238,7 +238,7 @@
\hline \hline
b & \textit{$s_5$: sec-run} & \textit{$s_0$: time} & $z_4$ \\ b & \textit{$s_5$: sec-run} & \textit{$s_0$: time} & $z_4$ \\
\hline \hline
c & \textit{$s_5$: sec-run} & \textit{$s_0$: time} & $z_0$ \\ c & \textit{$s_5$: sec-run} & \textit{$s_5$: sec-run} & $z_0$ \\
\hline \hline
a & \textit{$s_6$: display-off} & \textit{$s_6$: display-off} & $z_0$ \\ a & \textit{$s_6$: display-off} & \textit{$s_6$: display-off} & $z_0$ \\
@@ -304,7 +304,7 @@
\hline \hline
0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 & 1 & 0 & 0 \\ 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 & 1 & 0 & 0 \\
\hline \hline
1 & 0 & 1 & 0 & 1 & 0 & 0 & 0 & 0 & 0 & 0 \\ 1 & 0 & 1 & 0 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\
\hline \hline
0 & 0 & 1 & 1 & 0 & 1 & 1 & 0 & 0 & 0 & 0 \\ 0 & 0 & 1 & 1 & 0 & 1 & 1 & 0 & 0 & 0 & 0 \\
@@ -408,6 +408,82 @@
\subsubsection{Функции переходов и выходов} \subsubsection{Функции переходов и выходов}
\subsubsection{Управляющие воздействия}
\begin{table}[h!]
\centering
\caption{Импульсные микрокоманды.}
\footnotesize
\begin{tabular}{|c|c|c|}
\hline
\textbf{Обозначение} & \textbf{Микрокоманда} & \textbf{Код на выходе автомата} \\
\hline
$i_1$ & Увеличение минут на 1 & 001 \\
\hline
$i_2$ & Увеличение часов на 1 & 010 \\
\hline
$i_3$ & Следующий день недели & 011 \\
\hline
$i_4$ & Сброс секундомера & 100 \\
\hline
\end{tabular}
\end{table}
\begin{table}[h!]
\centering
\caption{Потенциальные микрокоманды.}
\footnotesize
\begin{tabular}{|c|c|c|}
\hline
\textbf{Обозначение} & \textbf{Микрокоманда} \\
\hline
$L_1$ & Отображение минут \\
\hline
$L_2$ & Отображение часов \\
\hline
$L_3$ & Отображение дня недели \\
\hline
$L_4$ & Отображение текущего времени \\
\hline
$L_5$ & Работа тактового генератора секундомера \\
\hline
\end{tabular}
\end{table}
\begin{table}[h!]
\centering
\caption{Потенциальные микрокоманды для каждого состояния.}
\footnotesize
\begin{tabularx}{0.9\textwidth}{|c|X|X|X|X|X|X|X|X|X|}
\hline
\textbf{Состояние} & \multicolumn{3}{|c|}{\textbf{Код состояния}} & \multicolumn{5}{|c|}{\textbf{Потенциальные микрокоманды}} \\
\cline{2-9}
& $Q_1$ & $Q_2$ & $Q_3$ & \textbf{$L_1$} & \textbf{$L_2$} & \textbf{$L_3$} & \textbf{$L_4$} & \textbf{$L_5$}\\
\hline
\textit{$s_0$: time} & 0 & 0 & 0 & 1 & 1 & 1 & 1 & 0 \\
\hline
\textit{$s_1$: minutes} & 0 & 0 & 1 & 1 & 0 & 0 & 1 & 0 \\
\hline
\textit{$s_2$: hours} & 0 & 1 & 0 & 0 & 1 & 0 & 1 & 0 \\
\hline
\textit{$s_3$: weekday} & 0 & 1 & 1 & 0 & 0 & 1 & 1 & 0 \\
\hline
\textit{$s_4$: sec-stop} & 1 & 0 & 0 & X & X & X & 0 & 0 \\
\hline
\textit{$s_5$: sec-run} & 1 & 0 & 1 & X & X & X & 0 & 1 \\
\hline
\textit{$s_6$: display-off} & 1 & 1 & 0 & 0 & 0 & 0 & 1 & 0 \\
\hline
\end{tabularx}
\end{table}
\newpage \newpage
\section*{Заключение} \section*{Заключение}
\addcontentsline{toc}{section}{Заключение} \addcontentsline{toc}{section}{Заключение}