代码搜索结果
找到约 10,000 项符合
State Machine 的代码
machine.v
module machine(INC_PC,LOAD_ACC,LOAD_PC,RD,WR,LOAD_IR,
DATACTL_ENA,HALT,CLK1,ZERO,ENA,OPCODE);
output INC_PC, LOAD_ACC,LOAD_PC,RD,WR,LOAD_IR;
output DATACTL_EN
machine.h
// struct used in machine shop simulation
#ifndef machine_
#define machine_
#include "arrayQueue.h"
#include "job.h"
using namespace std;
struct machine
{
arrayQueue jobQ;
machine.bas
Attribute VB_Name = "Machine"
Option Explicit
Global hPrinter As Long
Public Function Print_ICCID(pICCID As String, PrintType As Integer) As Boolean
Dim bRc As Long
Dim lPrinterACKTimeout
machine.cpp
// machine.cc
// Routines for simulating the execution of user programs.
//
// DO NOT CHANGE -- part of the machine emulation
//
// Copyright (c) 1992-1993 The Regents of the University of Californi
machine.h
// machine.h
// Data structures for simulating the execution of user programs
// running on top of Nachos.
//
// User programs are loaded into "mainMemory"; to Nachos,
// this looks just like an arra
machine.v
module machine(clk,reset,in,out);
input clk,reset,in;
output out;
reg out;
parameter set0=0,hold=1,set1=2;
reg [1:0] state;
always@(posedge clk or negedge reset)
begin
if
machine.dat
3 6
2 0 1
3
1 2 2 4 3 3
2
2 2 1 4
4
3 6 2 1 3 2 1 3
2
1 3 2 4
1
1 2
5
2 2 1 2 3 3 1 1 2 3