extends Node const TableNode = preload("res://table/node.tscn") const UNICAST_PORT: int = 50003 const UNICAST_ADDRESS: String = '10.1.1.3' const BROADCAST_PORT: int = 50000 const DEFAULT_ADDRESS: String = '10.1.1.52' const DEFAULT_PORT: String = '50052' const BASE_ADDR: int = 0x100 const ROWS_REGS_DATA: Array = [ [TableNode, TableNode, TableNode, TableNode, TableNode], [TableNode, TableNode, TableNode, TableNode, TableNode], [TableNode, TableNode, TableNode, TableNode, TableNode]] enum STATE { WAIT, # Режим ожидания команды READ, # Чтение из ИСА WRITE, # ЗАпись в ИСА }