# -*- coding: utf-8 -*- # # AWL simulator - SFCs # Copyright 2012-2013 Michael Buesch # # Licensed under the terms of the GNU General Public License version 2. # from awlsim.blocks import * from awlsim.util import * class SFC64(SFC): def __init__(self): SFC.__init__(self, 64) def run(self, cpu): pass#TODO SFC_table = { 64 : SFC64(), }