Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
vmspython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
Modules
vmspython
Commits
b13b326baa08
Commit
b13b326baa08
authored
1 year ago
by
jfp
Browse files
Options
Downloads
Patches
Plain Diff
Fix alignment
parent
5d7d55d0d9c3
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/local/ovms_module/ovms/fatdef/__init__.py
+15
-12
15 additions, 12 deletions
python/local/ovms_module/ovms/fatdef/__init__.py
with
15 additions
and
12 deletions
python/local/ovms_module/ovms/fatdef/__init__.py
+
15
−
12
View file @
b13b326b
...
...
@@ -95,4 +95,5 @@
class
FAT
(
Structure
):
_pack_
=
1
_fields_
=
[
...
...
@@ -98,9 +99,9 @@
_fields_
=
[
(
"
fat_b_rtype
"
,
c_u
short
),
# record type
(
"
fat_v_fortrancc
"
,
c_
int
,
1
),
# fat$v_fortrancc
(
"
fat_v_impliedcc
"
,
c_
int
,
1
),
# implied carriage control
(
"
fat_v_
fat$v_
printcc
"
,
c_
int
,
1
),
# print file carriage control
(
"
fat_v_nospan
"
,
c_
int
,
1
),
# print file carriage control
(
"
fat_v_msbrcw
"
,
c_
int
,
1
),
# Format of RCW (0=LSB, 1=MSB)
(
"
fat_v_fill_1
"
,
c_
int
,
3
),
# MBZ (or should be zero)
(
"
fat_b_rtype
"
,
c_u
byte
),
# record type
(
"
fat_v_fortrancc
"
,
c_
ubyte
,
1
),
# fat$v_fortrancc
(
"
fat_v_impliedcc
"
,
c_
ubyte
,
1
),
# implied carriage control
(
"
fat_v_printcc
"
,
c_
ubyte
,
1
),
# print file carriage control
(
"
fat_v_nospan
"
,
c_
ubyte
,
1
),
# print file carriage control
(
"
fat_v_msbrcw
"
,
c_
ubyte
,
1
),
# Format of RCW (0=LSB, 1=MSB)
(
"
fat_v_fill_1
"
,
c_
ubyte
,
3
),
# MBZ (or should be zero)
(
"
fat_w_rsize
"
,
c_ushort
),
# MBZ (or should be zero)
...
...
@@ -106,6 +107,8 @@
(
"
fat_w_rsize
"
,
c_ushort
),
# MBZ (or should be zero)
(
"
fat_l_hiblk
"
,
c_ulong
),
# highest allocated VBN
(
"
fat_l_efblk
"
,
c_ulong
),
# end of file VBN
(
"
fat_l_hiblkh
"
,
c_ushort
),
# highest allocated VBN high order word
(
"
fat_l_hiblkl
"
,
c_ushort
),
# highest allocated VBN low order word
(
"
fat_l_efblkh
"
,
c_ushort
),
# end of file VBN high order word
(
"
fat_l_efblkl
"
,
c_ushort
),
# end of file VBN low order word
(
"
fat_w_ffbyte
"
,
c_ushort
),
# first free byte in EFBLK
(
"
fat_b_bktsize
"
,
c_ubyte
),
# bucket size in blocks
(
...
...
@@ -117,8 +120,8 @@
(
"
fat_w_gbc
"
,
c_ushort
),
# global buffer count (original word)
(
"
fat_v_gbc_percent
"
,
c_
int
,
c_
ubyte
,
1
,
),
# Interpret value in GBC32 as percent instead of count
(
"
fat_v_gbc_default
"
,
...
...
@@ -121,7 +124,7 @@
1
,
),
# Interpret value in GBC32 as percent instead of count
(
"
fat_v_gbc_default
"
,
c_
int
,
c_
ubyte
,
1
,
),
# RMS should set default for GBC at runtime and ignore
...
...
@@ -126,6 +129,6 @@
1
,
),
# RMS should set default for GBC at runtime and ignore
(
"
fat___fill_4
"
,
c_
int
,
6
),
# Reserved for future use
(
"
fat___fill_4
"
,
c_
ubyte
,
6
),
# Reserved for future use
(
"
fat___fill_2
"
,
c_ubyte
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment