Skip to content

Commit

Permalink
changed memblocks from overlayed to normal
Browse files Browse the repository at this point in the history
changed memblocks from overlayed to normal
  • Loading branch information
zeroKilo committed Sep 27, 2019
1 parent 5545261 commit ea2cc3f
Show file tree
Hide file tree
Showing 17 changed files with 4 additions and 4 deletions.
Binary file modified XEXLoaderWV/.gradle/5.0/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/5.0/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/5.0/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/5.0/javaCompile/javaCompile.lock
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/5.0/taskHistory/taskHistory.bin
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/5.0/taskHistory/taskHistory.lock
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified XEXLoaderWV/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file modified XEXLoaderWV/bin/xexloaderwv/XEXHeader.class
Binary file not shown.
Binary file modified XEXLoaderWV/build/classes/java/main/xexloaderwv/XEXHeader.class
Binary file not shown.
2 changes: 1 addition & 1 deletion XEXLoaderWV/build/help/main/help/XEXLoaderWV_HelpSet.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='ISO-8859-1' ?>
<!DOCTYPE helpset PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN" "http://java.sun.com/products/javahelp/helpset_2_0.dtd">

<!-- HelpSet auto-generated on Wed Sep 25 19:40:45 CEST 2019 -->
<!-- HelpSet auto-generated on Fri Sep 27 22:36:47 CEST 2019 -->
<helpset version="2.0">
<title>XEXLoaderWV HelpSet</title>
<maps>
Expand Down
2 changes: 1 addition & 1 deletion XEXLoaderWV/build/help/main/help/XEXLoaderWV_TOC.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='ISO-8859-1' ?>
<!-- Auto-generated on Wed Sep 25 19:40:45 CEST 2019 -->
<!-- Auto-generated on Fri Sep 27 22:36:47 CEST 2019 -->

<toc version="2.0">
</toc>
2 changes: 1 addition & 1 deletion XEXLoaderWV/build/help/main/help/XEXLoaderWV_map.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='ISO-8859-1' ?>
<!doctype MAP public "-//Sun Microsystems Inc.//DTD JavaHelp Map Version 1.0//EN">
<!-- Auto-generated on Wed Sep 25 19:40:45 CEST 2019 : Do Not Edit -->
<!-- Auto-generated on Fri Sep 27 22:36:47 CEST 2019 : Do Not Edit -->
<map version="1.0">
<mapID target="xexloaderwv_HelpAnchor" url="topics/xexloaderwv/help.html#HelpAnchor"/>
<mapID target="xexloaderwv_help" url="topics/xexloaderwv/help.html"/>
Expand Down
Binary file modified XEXLoaderWV/build/libs/XEXLoaderWV.jar
Binary file not shown.
Binary file modified XEXLoaderWV/build/tmp/src/XEXLoaderWV-src.zip
Binary file not shown.
Binary file modified XEXLoaderWV/dist/XEXLoaderWV.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion XEXLoaderWV/src/main/java/xexloaderwv/XEXHeader.java
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public void MakeBlock(Program program, String name, String desc, long address, I
{
byte[] bf = perm.getBytes();
Address addr = program.getAddressFactory().getDefaultAddressSpace().getAddress(address);
MemoryBlock block = MemoryBlockUtils.createInitializedBlock(program, true, name, addr, s, size, desc, null, bf[0] == '1', bf[1] == '1', bf[2] == '1', log, monitor);
MemoryBlock block = MemoryBlockUtils.createInitializedBlock(program, false, name, addr, s, size, desc, null, bf[0] == '1', bf[1] == '1', bf[2] == '1', log, monitor);
blocks.add(block);
if(struc != null)
DataUtilities.createData(program, block.getStart(), struc, -1, false, ClearDataMode.CLEAR_ALL_UNDEFINED_CONFLICT_DATA);
Expand Down

0 comments on commit ea2cc3f

Please sign in to comment.