1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-11-29 10:50:28 +00:00

Update some comments

This commit is contained in:
Andy McFadden 2018-10-10 14:03:03 -07:00
parent 9363c3d852
commit 52388b4065
3 changed files with 21 additions and 6 deletions

View File

@ -1,4 +1,19 @@
namespace SourceGen.AppForms { /*
* Copyright 2018 faddenSoft
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace SourceGen.AppForms {
partial class FormatSplitAddress { partial class FormatSplitAddress {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.

View File

@ -8,7 +8,7 @@
; It may be necessary to review the analyzer output to verify certain things. ; It may be necessary to review the analyzer output to verify certain things.
MAGIC equ $2456 MAGIC equ $2456 ;recognized by extension script
org $1000 org $1000
@ -30,9 +30,9 @@ inneri ldx #$ff ;EDIT: add inline data hint to middle byte (a2);
nop nop
jsr inneri ;analyzer should follow this path jsr inneri ;analyzer should follow this path
jsr MAGIC ;next 4 bytes are inline data jsr MAGIC ;next 4 bytes are inline data tagged by the
magic11 lda #$11 magic11 lda #$11 ; extension script -- if they show up as
ldx #$22 ldx #$22 ; LDA/LDX, the script isn't working
jsr magic11 ;analyzer should ignore this path jsr magic11 ;analyzer should ignore this path

View File

@ -44,7 +44,7 @@ namespace SourceGen.Sandbox {
/// List of assemblies for the CompilerParameters.ReferencedAssemblies argument. /// List of assemblies for the CompilerParameters.ReferencedAssemblies argument.
/// </summary> /// </summary>
private static readonly string[] sRefAssem = new string[] { private static readonly string[] sRefAssem = new string[] {
// Need this for various things to work. // Need this for various things to work, like System.Collections.Generic.
"netstandard.dll", "netstandard.dll",
// Plugins are implemented in terms of interfaces defined here. // Plugins are implemented in terms of interfaces defined here.