This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<register> | |
<dim>24</dim> | |
<dimIncrement>4</dimIncrement> | |
<dimName>PIO0</dimName> | |
<name>PIO0[%s]</name> | |
<description>Generic I/O configuration for PIO, port 0.</description> | |
<addressOffset>0x000</addressOffset> | |
<fields> | |
<field> | |
<name>FUNC</name> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Declaration file for js-binary */ | |
declare module "js-binary" { | |
export class Data { | |
public constructor(capacity: number); | |
private _buffer: Buffer; | |
private _length: number; | |
public appendBuffer(data: Buffer): void; | |
public writeUInt8(value: number): void; | |
public writeUInt16(value: number): void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ { type: 'identifier', match: 'The' }, | |
{ type: 'identifier', match: 'quick' }, | |
{ type: 'identifier', match: 'brown' }, | |
{ type: 'identifier', match: 'dog' }, | |
{ type: 'identifier', match: 'jumped' }, | |
{ type: 'identifier', match: 'over' }, | |
{ type: 'identifier', match: 'the' }, | |
{ type: 'identifier', match: 'lazy' }, | |
{ type: 'identifier', match: 'rabbit' }, | |
{ type: 'operator', match: '=' }, |