summaryrefslogtreecommitdiffstats
path: root/system_sfc.py
blob: 18e4b8736bd56d4511bff6ed60e7efee30f49e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
#
# AWL simulator - SFCs
# Copyright 2012-2013 Michael Buesch <m@bues.ch>
#
# Licensed under the terms of the GNU General Public License version 2.
#

from awlblocks import *
from util import *


class SFC64(SFC):
	def __init__(self):
		SFC.__init__(self, 64)

	def run(self, cpu):
		pass#TODO

SFC_table = {
	64	: SFC64(),
}
bues.ch cgit interface